generated from PrivateAIM/python-template
-
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.
ci(helm): move randomly generated secret to helpers.tpl
- Loading branch information
Showing
5 changed files
with
59 additions
and
10 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
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,34 @@ | ||
keycloak: | ||
auth: | ||
adminUser: admin | ||
adminPassword: admin | ||
postgresql: | ||
enabled: true | ||
nameOverride: keycloak-postgresql | ||
auth: | ||
postgresPassword: "foo" # TODO remove!! Not needed since secret is provided | ||
username: keycloak # custom user | ||
password: keycloak # custom user pwd | ||
database: keycloak | ||
# existingSecret: "kc-password-secret" # admin password, requires "password" key in secret | ||
architecture: standalone | ||
|
||
keycloakConfigCli: | ||
## @param keycloakConfigCli.enabled Whether to enable keycloak-config-cli job | ||
## Must be set to true to apply settings below | ||
enabled: true | ||
## @param keycloakConfigCli.configuration keycloak-config-cli realms configuration | ||
## NOTE: nil keys will be considered files to import locally | ||
## Example: | ||
## configuration: | ||
## realm1.json: | | ||
## { | ||
## "realm": "realm1", | ||
## "clients": [] | ||
## } | ||
## files/realm2.yaml: | ||
## realm3.yaml: | | ||
## realm: realm3 | ||
## clients: [] | ||
## | ||
existingConfigmap: "flame-default-realm" |