Skip to content

Commit

Permalink
docs(charts): mention about empty configuration key
Browse files Browse the repository at this point in the history
Signed-off-by: iromli <[email protected]>
  • Loading branch information
iromli committed Jan 8, 2025
1 parent 931e9c6 commit c819e09
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/janssen-all-in-one/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ Kubernetes: `>=v1.22.0-0`
| cnConfiguratorCustomSchema | object | `{"secretName":""}` | Use custom configuration schema in existing secrets. Note, the secrets has to contain the key configuration.json or any basename as specified in cnConfiguratorConfigurationFile. |
| cnConfiguratorCustomSchema.secretName | string | `""` | The name of the secrets used for storing custom configuration schema. |
| cnConfiguratorDumpFile | string | `"/etc/jans/conf/configuration.out.json"` | Path to dumped configuration schema file |
| cnConfiguratorKey | string | `""` | Key to encrypt/decrypt configuration schema file |
| cnConfiguratorKeyFile | string | `"/etc/jans/conf/configuration.key"` | Path to file contains key to encrypt/decrypt configuration schema file |
| cnConfiguratorKey | string | `""` | Key to encrypt/decrypt configuration schema file (if empty, encryption/decryption will be skipped). |
| cnConfiguratorKeyFile | string | `"/etc/jans/conf/configuration.key"` | Path to file contains key to encrypt/decrypt configuration schema file. |
| cnDocumentStoreType | string | `"DB"` | Document store type to use for shibboleth files DB. |
| cnGoogleApplicationCredentials | string | `"/etc/jans/conf/google-credentials.json"` | Base64 encoded service account. The sa must have roles/secretmanager.admin to use Google secrets. Leave as this is a sensible default. |
| cnPersistenceType | string | `"sql"` | Persistence backend to run Janssen with hybrid|sql. |
Expand Down
4 changes: 2 additions & 2 deletions charts/janssen-all-in-one/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -573,9 +573,9 @@ cnConfiguratorDumpFile: /etc/jans/conf/configuration.out.json
cnConfiguratorCustomSchema:
# -- The name of the secrets used for storing custom configuration schema.
secretName: ""
# -- Key to encrypt/decrypt configuration schema file
# -- Key to encrypt/decrypt configuration schema file (if empty, encryption/decryption will be skipped).
cnConfiguratorKey: ""
# -- Path to file contains key to encrypt/decrypt configuration schema file
# -- Path to file contains key to encrypt/decrypt configuration schema file.
cnConfiguratorKeyFile: /etc/jans/conf/configuration.key

# ingress properties
Expand Down
4 changes: 2 additions & 2 deletions charts/janssen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ Kubernetes: `>=v1.22.0-0`
| global.cnConfiguratorCustomSchema | object | `{"secretName":""}` | Use custom configuration schema in existing secrets. Note, the secrets has to contain the key configuration.json or any basename as specified in cnConfiguratorConfigurationFile. |
| global.cnConfiguratorCustomSchema.secretName | string | `""` | The name of the secrets used for storing custom configuration schema. |
| global.cnConfiguratorDumpFile | string | `"/etc/jans/conf/configuration.out.json"` | Path to dumped configuration schema file |
| global.cnConfiguratorKey | string | `""` | Key to encrypt/decrypt configuration schema file |
| global.cnConfiguratorKeyFile | string | `"/etc/jans/conf/configuration.key"` | Path to file contains key to encrypt/decrypt configuration schema file |
| global.cnConfiguratorKey | string | `""` | Key to encrypt/decrypt configuration schema file (if empty, encryption/decryption will be skipped). |
| global.cnConfiguratorKeyFile | string | `"/etc/jans/conf/configuration.key"` | Path to file contains key to encrypt/decrypt configuration schema file. |
| global.cnDocumentStoreType | string | `"DB"` | Document store type to use for shibboleth files DB. |
| global.cnGoogleApplicationCredentials | string | `"/etc/jans/conf/google-credentials.json"` | Base64 encoded service account. The sa must have roles/secretmanager.admin to use Google secrets. Leave as this is a sensible default. |
| global.cnPersistenceType | string | `"sql"` | Persistence backend to run Janssen with hybrid|sql |
Expand Down
4 changes: 2 additions & 2 deletions charts/janssen/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1203,9 +1203,9 @@ global:
cnConfiguratorCustomSchema:
# -- The name of the secrets used for storing custom configuration schema.
secretName: ""
# -- Key to encrypt/decrypt configuration schema file
# -- Key to encrypt/decrypt configuration schema file (if empty, encryption/decryption will be skipped).
cnConfiguratorKey: ""
# -- Path to file contains key to encrypt/decrypt configuration schema file
# -- Path to file contains key to encrypt/decrypt configuration schema file.
cnConfiguratorKeyFile: /etc/jans/conf/configuration.key

# -- Nginx ingress definitions chart
Expand Down

0 comments on commit c819e09

Please sign in to comment.