-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #180 from maykinmedia/feature/stable-release-openk…
…lant 🔖 Stable release for Open Klant
- Loading branch information
Showing
6 changed files
with
68 additions
and
7 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
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 |
---|---|---|
|
@@ -28,6 +28,54 @@ configuration: | |
# memory: 128Mi | ||
secrets: {} | ||
data: "" | ||
# e.g. | ||
# data: |- | ||
# tokenauth_config_enable: true | ||
# tokenauth: | ||
# items: | ||
# - identifier: openinwoner-token | ||
# token: ${openklant_openinwoner_token} | ||
# contact_person: Person 1 | ||
# email: [email protected] | ||
# organization: Organization XYZ | ||
# application: Application XYZ | ||
# administration: Administration XYZ | ||
# oidc_db_config_enable: True | ||
# oidc_db_config_admin_auth: | ||
# items: | ||
# - identifier: admin-oidc | ||
# enabled: True | ||
# oidc_rp_client_id: openklant.example.nl | ||
# oidc_rp_client_secret: ${keycloak_client_secret} | ||
# oidc_rp_scopes_list: | ||
# - openid | ||
# - profile | ||
# - roles | ||
# oidc_rp_sign_algo: RS256 | ||
# endpoint_config: | ||
# oidc_op_discovery_endpoint: https://keycloak.example.nl/realms/example/ | ||
# username_claim: | ||
# - sub | ||
# groups_claim: | ||
# - roles | ||
# claim_mapping: | ||
# first_name: | ||
# - given_name | ||
# last_name: | ||
# - family_name | ||
# email: | ||
# sync_groups: true | ||
# sync_groups_glob_pattern: "*" | ||
# default_groups: [] | ||
# make_users_staff: true | ||
# superuser_group_names: | ||
# - Superuser | ||
# oidc_use_nonce: true | ||
# oidc_nonce_size: 32 | ||
# oidc_state_size: 32 | ||
# userinfo_claims_source: id_token | ||
|
||
tags: | ||
redis: true | ||
|
@@ -151,6 +199,10 @@ affinity: {} | |
|
||
# Existing Secret must be defined for AzureVaultSecret to work | ||
existingSecret: null | ||
# Reference to an existing secret with the values needed for django-setup-configuration | ||
existingConfigurationSecrets: null | ||
# If no secret already exists with the values needed for django-setup-configuration, create it with the following name | ||
configurationSecretsName: "" | ||
|
||
# This will create an AzureVaultSecret object in k8s, only Multi Key Value Secret are supported by this chart | ||
# ref: https://akv2k8s.io/tutorials/sync/4-multi-key-value-secret/ https://learn.microsoft.com/en-us/azure/key-vault/secrets/multiline-secrets | ||
|