Provide admin user a custom secret
Instead of providing adminUser and adminPassword for Leap directly in the custom values, a secret can be used to pass the credentials to the deployments.
- Create a secret that will be used to reference credentials, this secret should
contain the required credential attributes (e.g. "username", "password").
kubectl create secret generic <secret-name> --from-literal=username=<your-username> --from- literal=password=<your-password> --namespace=<namespace> - Reference the secret in the custom Helm values. When a secret is used,
the adminUser and adminPassword values must be set to an empty string ("")
or null. Example
configuration:
security: leap: adminUser: "" adminPassword: "" customAdminSecret: "my-custom-admin-secret"
Custom secrets
Apart from the admin credentials there can be use cases where credentials, secrets or additional key files are required. To pass them to the deployment, the configuration.leap.customSecrets value can be used to reference additional Kubernetes Secrets.
Secrets are both injected as environment variables and mounted as files in /mnt/customSecrets in a subfolder named like the referenced key. From there they can be referenced in the server configuration or the configOverrideFiles.
All keys and values under customSecrets must consist of lower-case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name', or '123-abc'). helm install will throw one of the following errors if this criterion is not met:
- "configuration.leap.customSecrets: Additional property is not allowed"
- "configuration.leap.customSecrets.: Does not match pattern '^[a-z0-9]([-a-z0-9]*[a-z0-9])?$'"
Using custom secrets for credentials
my-custom-db-credentials, which contains two
entries DB_USERNAME and DB_PASSWORD:kubectl create secret generic my-custom-db-credentials --from-literal=DB_USERNAME=<your-username> --from-
literal=DB_PASSWORD=<your-password> --namespace=<namespace> db-credentials in the custom Helm
values:configuration:
leap:
customSecrets:
db-credentials: my-custom-db-credentialsThis will result in:
- The environment variables DB_USERNAME and DB_PASSWORD being injected into the Pod.
- The files DB_USERNAME and DB_PASSWORD being mounted
in
/mnt/customSecrets/db-credentialsinside the Pod each containing the values specified in the secret.
configuration:
leap:
configOverrideFiles:
db2Override: |
<server description="leapServer">
<authData id="db2AuthAlias" user="${DB_USERNAME}" password="${DB_PASSWORD}" />
<library id="jdbcDB2" >
...
</library>
<dataSource id="febDataSource" jndiName="jdbc/BuilderDataSource" statementCacheSize="30" containerAuthDataRef="db2AuthAlias">
...
</dataSource>
</server> Using custom secrets as key file
my-custom-ltpa-key from an
LTPA key file including the
entry LTPA_KEY:kubectl create secret generic my-custom-ltpa-key --from-file=./ltpa.keys --namespace=<namespace>
ltpa-key in the custom Helm
values:configuration:
leap:
customSecrets:
ltpa-key: my-custom-ltpa-key This will result in:
- The environment variables
ltpa.keysbeing injected into the Pod. - The file
ltpa.keysbeing mounted in/mnt/customSecrets/ltpa-keyinside the Pod containing the same content as the input file.
configuration:
leap:
configOverrideFiles:
ltpaOverride: |
<server description="leapServer">
<ltpa keysFileName="/mnt/customSecrets/ltpa-key/ltpa.keys" keysPassword="myLtpaKeyPassword" />
</server>