forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added field to the RealmImport spec to replace environment variables …
…within the realm import (keycloak#31232) * Added field to the RealmImport spec to replace environment variables within the realm import Closes keycloak#26470 Signed-off-by: stustison <[email protected]> * Added field to the RealmImport spec to replace environment variables within the realm import Closes keycloak#26470 Signed-off-by: stustison <[email protected]> * testing refinement for placeholder handling closes: keycloak#26470 Signed-off-by: Steve Hawkins <[email protected]> * changing from placeholdersecret to placeholder Signed-off-by: Steve Hawkins <[email protected]> * Update docs/guides/operator/realm-import.adoc Co-authored-by: Martin Bartoš <[email protected]> Signed-off-by: Steven Hawkins <[email protected]> * Update docs/documentation/release_notes/topics/26_0_0.adoc Co-authored-by: Martin Bartoš <[email protected]> Signed-off-by: Steven Hawkins <[email protected]> --------- Signed-off-by: stustison <[email protected]> Signed-off-by: Steve Hawkins <[email protected]> Signed-off-by: Steven Hawkins <[email protected]> Co-authored-by: stustison <[email protected]> Co-authored-by: Martin Bartoš <[email protected]>
- Loading branch information
1 parent
28a27c9
commit 22f8e5c
Showing
7 changed files
with
203 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
operator/src/main/java/org/keycloak/operator/crds/v2alpha1/realmimport/Placeholder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Copyright 2022 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.keycloak.operator.crds.v2alpha1.realmimport; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import io.fabric8.kubernetes.api.model.SecretKeySelector; | ||
import io.sundr.builder.annotations.Buildable; | ||
|
||
import java.util.Objects; | ||
|
||
/** | ||
* @author Scott Tustison | ||
*/ | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
@Buildable(editableEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder") | ||
public class Placeholder { | ||
private SecretKeySelector secret; | ||
|
||
public Placeholder() { | ||
} | ||
|
||
public Placeholder(SecretKeySelector secret) { | ||
this.secret = secret; | ||
} | ||
|
||
public SecretKeySelector getSecret() { | ||
return secret; | ||
} | ||
|
||
public void setSecret(SecretKeySelector secret) { | ||
this.secret = secret; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) return true; | ||
if (o == null || getClass() != o.getClass()) return false; | ||
Placeholder that = (Placeholder) o; | ||
return getSecret().equals(that.getSecret()); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(getSecret()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: keycloak-smtp-secret | ||
stringData: | ||
SMTP_PORT: "1234" | ||
SMTP_SERVER: "example.com" | ||
SMTP_FROM: "[email protected]" | ||
SMTP_REPLY: "[email protected]" | ||
SMTP_USE_TLS: "true" | ||
SMTP_USERNAME: "example" | ||
SMTP_PASSWORD: "example" | ||
SMTP_AUTH: "true" | ||
type: Opaque |