# Copyright Broadcom, Inc. All Rights Reserved. # SPDX-License-Identifier: APACHE-2.0 ## @section Global parameters global: ## Global Docker image parameters ## Please, note that this will override the image parameters, including dependencies, configured to use the global value ## @param global.imageRegistry Global Docker Image registry ## @param global.imagePullSecrets Global Docker registry secret names as an array ## imageRegistry: "" imagePullSecrets: [] ## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s) ## defaultStorageClass: "" ## Security parameters ## @param global.security.allowInsecureImages Allows skipping image verification ## security: allowInsecureImages: false ## Compatibility adaptations for Kubernetes platforms ## compatibility: ## Compatibility adaptations for Openshift ## @param global.compatibility.openshift.adaptSecurityContext Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) ## openshift: adaptSecurityContext: auto ## @param global.compatibility.omitEmptySeLinuxOptions If set to true, removes the seLinuxOptions from the securityContexts when it is set to an empty object ## omitEmptySeLinuxOptions: false ## @section Common parameters ## @param kubeVersion Override Kubernetes version reported by .Capabilities ## kubeVersion: "" ## @param apiVersions Override Kubernetes API versions reported by .Capabilities ## apiVersions: [] ## @param nameOverride String to partially override common.names.name ## nameOverride: "" ## @param fullnameOverride String to fully override common.names.fullname ## fullnameOverride: "" ## @param namespaceOverride String to fully override common.names.namespace ## namespaceOverride: "" ## @param commonLabels Labels to add to all deployed objects ## commonLabels: {} ## @param commonAnnotations Annotations to add to all deployed objects ## commonAnnotations: {} ## @param clusterDomain Default Kubernetes cluster domain ## clusterDomain: cluster.local ## @param extraDeploy Array of extra objects to deploy with the release ## extraDeploy: [] ## Diagnostic mode ## @param diagnosticMode.enabled Enable diagnostic mode (all probes will be disabled and the command will be overridden) ## @param diagnosticMode.command Command to override all containers in the chart release ## @param diagnosticMode.args Args to override all containers in the chart release ## diagnosticMode: enabled: false command: - sleep args: - infinity ## @param useHelmHooks Enable use of Helm hooks if needed, e.g. on post-install jobs ## useHelmHooks: true ## @param usePasswordFiles Mount credentials as files instead of using environment variables ## usePasswordFiles: true ## @section Keycloak parameters ## Bitnami Keycloak image version ## ref: https://hub.docker.com/r/bitnami/keycloak/tags/ ## @param image.registry [default: REGISTRY_NAME] Keycloak image registry ## @param image.repository [default: REPOSITORY_NAME/keycloak] Keycloak image repository ## @skip image.tag Keycloak image tag (immutable tags are recommended) ## @param image.digest Keycloak image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag ## @param image.pullPolicy Keycloak image pull policy ## @param image.pullSecrets Keycloak image pull secrets ## @param image.debug Enable Keycloak image debug mode ## image: registry: docker.io repository: bitnami/keycloak tag: 26.3.3-debian-12-r0 digest: "" ## Specify a imagePullPolicy ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images ## pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets (secrets must be manually created in the namespace) ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ ## e.g: ## pullSecrets: ## - myRegistryKeySecretName ## pullSecrets: [] debug: false ## Keycloak authentication parameters ## ref: https://github.com/bitnami/containers/tree/main/bitnami/keycloak#admin-credentials ## auth: ## @param auth.adminUser Keycloak administrator user ## adminUser: user ## @param auth.adminPassword Keycloak administrator password for the new user ## adminPassword: "" ## @param auth.existingSecret Existing secret containing Keycloak admin password ## existingSecret: "" ## @param auth.passwordSecretKey Key where the Keycloak admin password is being stored inside the existing secret. ## passwordSecretKey: "" ## @param auth.annotations Additional custom annotations for Keycloak auth secret object ## annotations: {} ## @param production Run Keycloak in production mode. TLS configuration is required except when using proxy headers ## production: false ## HTTPS settings ## ## @param tls.enabled Enable TLS in Keycloak ## @param tls.usePemCerts Use PEM certificates as input instead of PKS12/JKS stores ## @param tls.autoGenerated.enabled Enable automatic generation of TLS certificates ## @param tls.autoGenerated.engine Mechanism to generate the certificates (allowed values: helm, cert-manager) ## @param tls.autoGenerated.certManager.existingIssuer The name of an existing Issuer to use for generating the certificates (only for `cert-manager` engine) ## @param tls.autoGenerated.certManager.existingIssuerKind Existing Issuer kind, defaults to Issuer (only for `cert-manager` engine) ## @param tls.autoGenerated.certManager.keyAlgorithm Key algorithm for the certificates (only for `cert-manager` engine) ## @param tls.autoGenerated.certManager.keySize Key size for the certificates (only for `cert-manager` engine) ## @param tls.autoGenerated.certManager.duration Duration for the certificates (only for `cert-manager` engine) ## @param tls.autoGenerated.certManager.renewBefore Renewal period for the certificates (only for `cert-manager` engine) ## @param tls.existingSecret The name of an existing Secret containing the TLS certificates for Keycloak replicas ## @param tls.certFilename Certificate filename inside the existing secret (when tls.usePemCerts=true and tls.autoGenerated.enabled=false) ## @param tls.certKeyFilename Certificate key filename inside the existing secret (when tls.usePemCerts=true and tls.autoGenerated.enabled=false) ## @param tls.keystoreFilename Keystore filename inside the existing secret ## @param tls.truststoreFilename Truststore filename inside the existing secret ## @param tls.keystorePassword Password to access the keystore when it's password-protected ## @param tls.truststorePassword Password to access the truststore when it's password-protected ## @param tls.passwordsSecret The name of an existing Secret containing the keystore/truststore passwords (expected keys: `tls-keystore-password` and `tls-truststore-password`) ## tls: enabled: false usePemCerts: false autoGenerated: enabled: true engine: helm certManager: existingIssuer: "" existingIssuerKind: "" keySize: 2048 keyAlgorithm: RSA duration: 2160h renewBefore: 360h ## Create this secret following the steps below: ## 1) Generate your truststore and keystore files (more info at https://www.keycloak.org/server/enabletls) ## 2) Rename your truststore to `keycloak.truststore.jks` ## 3) Rename your keystores to `keycloak.keystore.jks` ## 4) Run the command below where SECRET_NAME is the name of the secret you want to create: ## kubectl create secret generic SECRET_NAME --from-file=./keycloak.truststore.jks --from-file=./keycloak.keystore.jks ## NOTE: If tls.usePemCerts enabled, make sure the PEM key and cert are named 'tls.key' and 'tls.crt' respectively. ## existingSecret: "" certFilename: "tls.crt" certKeyFilename: "tls.key" keystoreFilename: "keycloak.keystore.jks" truststoreFilename: "keycloak.truststore.jks" keystorePassword: "" truststorePassword: "" passwordsSecret: "" ## @param trustedCertsExistingSecret Name of the existing Secret containing the trusted certificates to validate communications with external services ## ref: https://www.keycloak.org/server/keycloak-truststore ## trustedCertsExistingSecret: "" ## @param adminRealm Name of the admin realm ## adminRealm: "master" ## @param proxyHeaders Set Keycloak proxy headers ## proxyHeaders: "" ## @param hostnameStrict Disables dynamically resolving the hostname from request headers (ignored if ingress.enabled is false). ## Should always be set to true in production, unless your reverse proxy overwrites the Host header. ## If enabled, the ingress.hostname option needs to be specified. ## hostnameStrict: false ## @param httpEnabled Force enabling HTTP endpoint (by default is only enabled if TLS is disabled) ## httpEnabled: false ## @param httpRelativePath Set the path relative to '/' for serving resources ## httpRelativePath: "/" ## Keycloak cache configuration ## ref: https://www.keycloak.org/server/caching ## @param cache.enabled Switch to enable or disable the Keycloak distributed cache for kubernetes. ## NOTE: Set to false to use 'local' cache (only supported when replicaCount=1). ## @param cache.stack Cache stack to use ## @param cache.configFile Path to the file from which cache configuration should be loaded from ## @param cache.useHeadlessServiceWithAppVersion Create a headless service used for ispn containing the app version ## cache: enabled: true stack: jdbc-ping configFile: "cache-ispn.xml" useHeadlessServiceWithAppVersion: false ## Keycloak logging configuration ## ref: https://www.keycloak.org/server/logging ## @param logging.output Alternates between the default log output format or json format ## @param logging.level Allowed values as documented: FATAL, ERROR, WARN, INFO, DEBUG, TRACE, ALL, OFF ## logging: output: default level: INFO ## @param configuration Keycloak Configuration. Auto-generated based on other parameters when not specified ## NOTE: This will override configuring Keycloak based on environment variables (including those set by the chart) ## The keycloak.conf is auto-generated based on other parameters when this parameter is not specified ## ## Example: ## configuration: |- ## foo: bar ## baz: ## configuration: "" ## @param existingConfigmap Name of existing ConfigMap with Keycloak configuration ## NOTE: When it's set the configuration parameter is ignored ## existingConfigmap: "" ## @param extraStartupArgs Extra default startup args ## extraStartupArgs: "" ## @param initdbScripts Dictionary of initdb scripts ## Specify dictionary of scripts to be run at first boot ## ref: https://github.com/bitnami/containers/tree/main/bitnami/keycloak#initializing-a-new-instance ## Example: ## initdbScripts: ## my_init_script.sh: | ## #!/bin/bash ## echo "Do something." ## initdbScripts: {} ## @param initdbScriptsConfigMap ConfigMap with the initdb scripts (Note: Overrides `initdbScripts`) ## initdbScriptsConfigMap: "" ## @param command Override default container command (useful when using custom images) ## command: [] ## @param args Override default container args (useful when using custom images) ## args: [] ## @param extraEnvVars Extra environment variables to be set on Keycloak container ## Example: ## extraEnvVars: ## - name: FOO ## value: "bar" ## extraEnvVars: [] ## @param extraEnvVarsCM Name of existing ConfigMap containing extra env vars ## extraEnvVarsCM: "" ## @param extraEnvVarsSecret Name of existing Secret containing extra env vars ## extraEnvVarsSecret: "" ## @param containerPorts.http Keycloak HTTP container port ## @param containerPorts.https Keycloak HTTPS container port ## @param containerPorts.management Keycloak management container port ## containerPorts: http: 8080 https: 8443 management: 9000 ## @param extraContainerPorts Optionally specify extra list of additional ports for Keycloak container ## e.g: ## extraContainerPorts: ## - name: myservice ## containerPort: 9090 ## extraContainerPorts: [] ## Keycloak pods' SecurityContext ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod ## @param podSecurityContext.enabled Enabled Keycloak pods' Security Context ## @param podSecurityContext.fsGroupChangePolicy Set filesystem group change policy ## @param podSecurityContext.sysctls Set kernel settings using the sysctl interface ## @param podSecurityContext.supplementalGroups Set filesystem extra groups ## @param podSecurityContext.fsGroup Set Keycloak pod's Security Context fsGroup ## podSecurityContext: enabled: true fsGroupChangePolicy: Always sysctls: [] supplementalGroups: [] fsGroup: 1001 ## Keycloak containers' Security Context ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container ## @param containerSecurityContext.enabled Enabled containers' Security Context ## @param containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container ## @param containerSecurityContext.runAsUser Set containers' Security Context runAsUser ## @param containerSecurityContext.runAsGroup Set containers' Security Context runAsGroup ## @param containerSecurityContext.runAsNonRoot Set container's Security Context runAsNonRoot ## @param containerSecurityContext.privileged Set container's Security Context privileged ## @param containerSecurityContext.readOnlyRootFilesystem Set container's Security Context readOnlyRootFilesystem ## @param containerSecurityContext.allowPrivilegeEscalation Set container's Security Context allowPrivilegeEscalation ## @param containerSecurityContext.capabilities.drop List of capabilities to be dropped ## @param containerSecurityContext.seccompProfile.type Set container's Security Context seccomp profile ## containerSecurityContext: enabled: true seLinuxOptions: {} runAsUser: 1001 runAsGroup: 1001 runAsNonRoot: true privileged: false readOnlyRootFilesystem: true allowPrivilegeEscalation: false capabilities: drop: ["ALL"] seccompProfile: type: "RuntimeDefault" ## Keycloak resource requests and limits ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ ## @param resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if resources is set (resources is recommended for production). ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 ## resourcesPreset: "small" ## @param resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) ## Example: ## resources: ## requests: ## cpu: 2 ## memory: 512Mi ## limits: ## cpu: 3 ## memory: 1024Mi ## resources: {} ## Configure extra options for Keycloak containers' liveness, readiness and startup probes ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes ## @param livenessProbe.enabled Enable livenessProbe on Keycloak containers ## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe ## @param livenessProbe.periodSeconds Period seconds for livenessProbe ## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe ## @param livenessProbe.failureThreshold Failure threshold for livenessProbe ## @param livenessProbe.successThreshold Success threshold for livenessProbe ## livenessProbe: enabled: true initialDelaySeconds: 120 periodSeconds: 1 timeoutSeconds: 5 failureThreshold: 3 successThreshold: 1 ## @param readinessProbe.enabled Enable readinessProbe on Keycloak containers ## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe ## @param readinessProbe.periodSeconds Period seconds for readinessProbe ## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe ## @param readinessProbe.failureThreshold Failure threshold for readinessProbe ## @param readinessProbe.successThreshold Success threshold for readinessProbe ## readinessProbe: enabled: true initialDelaySeconds: 30 periodSeconds: 10 timeoutSeconds: 1 failureThreshold: 3 successThreshold: 1 ## @param startupProbe.enabled Enable startupProbe on Keycloak containers ## @param startupProbe.initialDelaySeconds Initial delay seconds for startupProbe ## @param startupProbe.periodSeconds Period seconds for startupProbe ## @param startupProbe.timeoutSeconds Timeout seconds for startupProbe ## @param startupProbe.failureThreshold Failure threshold for startupProbe ## @param startupProbe.successThreshold Success threshold for startupProbe ## startupProbe: enabled: false initialDelaySeconds: 30 periodSeconds: 5 timeoutSeconds: 1 failureThreshold: 10 successThreshold: 1 ## @param customLivenessProbe Custom Liveness probes for Keycloak ## customLivenessProbe: {} ## @param customReadinessProbe Custom Readiness probes Keycloak ## customReadinessProbe: {} ## @param customStartupProbe Custom Startup probes for Keycloak ## customStartupProbe: {} ## @section Keycloak StatefulSet parameters ## @param replicaCount Number of Keycloak replicas to deploy ## replicaCount: 1 ## @param updateStrategy.type Keycloak StatefulSet type ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#update-strategies ## updateStrategy: ## Can be set to RollingUpdate or OnDelete ## type: RollingUpdate ## @param revisionHistoryLimitCount Number of controller revisions to keep ## revisionHistoryLimitCount: 10 ## @param minReadySeconds How many seconds a pod needs to be ready before killing the next, during update ## minReadySeconds: 0 ## @param statefulsetAnnotations Optionally add extra annotations on the StatefulSet resource ## statefulsetAnnotations: {} ## @param automountServiceAccountToken Mount Service Account token in Keycloak pods ## automountServiceAccountToken: true ## @param hostAliases Deployment pod host aliases ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ ## hostAliases: [] ## @param podLabels Extra labels for Keycloak pods ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ ## podLabels: {} ## @param podAnnotations Annotations for Keycloak pods ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ ## podAnnotations: {} ## @param podAffinityPreset Pod affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity ## podAffinityPreset: "" ## @param podAntiAffinityPreset Pod anti-affinity preset. Ignored if `affinity` is set. Allowed values: `soft` or `hard` ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity ## podAntiAffinityPreset: soft ## Node affinity preset ## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity ## nodeAffinityPreset: ## @param nodeAffinityPreset.type Node affinity preset type. Ignored if `affinity` is set. Allowed values: `soft` or `hard` ## type: "" ## @param nodeAffinityPreset.key Node label key to match. Ignored if `affinity` is set. ## E.g. ## key: "kubernetes.io/e2e-az-name" ## key: "" ## @param nodeAffinityPreset.values Node label values to match. Ignored if `affinity` is set. ## E.g. ## values: ## - e2e-az1 ## - e2e-az2 ## values: [] ## @param affinity Affinity for pod assignment ## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity ## affinity: {} ## @param nodeSelector Node labels for pod assignment ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ ## nodeSelector: {} ## @param tolerations Tolerations for pod assignment ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ ## tolerations: [] ## @param topologySpreadConstraints Topology Spread Constraints for pod assignment spread across your cluster among failure-domains. Evaluated as a template ## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#spread-constraints-for-pods ## topologySpreadConstraints: [] ## @param podManagementPolicy Pod management policy for the Keycloak StatefulSet ## podManagementPolicy: Parallel ## @param priorityClassName Keycloak pods' Priority Class Name ## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ ## priorityClassName: "" ## @param schedulerName Use an alternate scheduler, e.g. "stork". ## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/ ## schedulerName: "" ## @param terminationGracePeriodSeconds Seconds Keycloak pod needs to terminate gracefully ## ref: https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods ## terminationGracePeriodSeconds: "" ## @param lifecycleHooks LifecycleHooks to set additional configuration at startup ## lifecycleHooks: {} ## @param dnsPolicy DNS Policy for pod ## @param dnsConfig DNS Configuration pod ## ref: https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/ ## dnsPolicy: "" dnsConfig: {} ## @param enableServiceLinks If set to false, disable Kubernetes service links in the pod spec ## Ref: https://kubernetes.io/docs/tutorials/services/connect-applications-service/#accessing-the-service ## enableServiceLinks: true ## @param extraVolumes Optionally specify extra list of additional volumes for Keycloak pods ## extraVolumes: [] ## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for Keycloak container(s) ## extraVolumeMounts: [] ## @param initContainers Add additional init containers to the Keycloak pods ## Example: ## initContainers: ## - name: your-image-name ## image: your-image ## imagePullPolicy: Always ## ports: ## - name: portname ## containerPort: 1234 ## initContainers: [] ## @param sidecars Add additional sidecar containers to the Keycloak pods ## Example: ## sidecars: ## - name: your-image-name ## image: your-image ## imagePullPolicy: Always ## ports: ## - name: portname ## containerPort: 1234 ## sidecars: [] ## @section Traffic Exposure Parameters ## Service configuration ## service: ## @param service.type Kubernetes service type ## type: ClusterIP ## @param service.http.enabled Enable http port on service ## http: enabled: true ## @param service.ports.http Keycloak service HTTP port ## @param service.ports.https Keycloak service HTTPS port ## ports: http: 80 https: 443 ## Node ports to expose ## @param service.nodePorts.http Node port for HTTP ## @param service.nodePorts.https Node port for HTTPS ## NOTE: choose port between <30000-32767> ## nodePorts: http: "" https: "" ## @param service.extraPorts Extra port to expose on Keycloak service ## extraPorts: [] ## @param service.sessionAffinity Control where client requests go, to the same pod or round-robin ## Values: ClientIP or None ## ref: https://kubernetes.io/docs/concepts/services-networking/service/ ## sessionAffinity: None ## @param service.sessionAffinityConfig Additional settings for the sessionAffinity ## sessionAffinityConfig: ## clientIP: ## timeoutSeconds: 300 ## sessionAffinityConfig: {} ## @param service.clusterIP Keycloak service clusterIP IP ## e.g: ## clusterIP: None ## clusterIP: "" ## @param service.loadBalancerIP loadBalancerIP for the SuiteCRM Service (optional, cloud specific) ## ref: https://kubernetes.io/docs/concepts/services-networking/service/#type-loadbalancer ## loadBalancerIP: "" ## @param service.loadBalancerSourceRanges Address that are allowed when service is LoadBalancer ## https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/#restrict-access-for-loadbalancer-service ## Example: ## loadBalancerSourceRanges: ## - 10.10.10.0/24 ## loadBalancerSourceRanges: [] ## @param service.externalTrafficPolicy Enable client source IP preservation ## ref https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip ## externalTrafficPolicy: Cluster ## @param service.annotations Additional custom annotations for Keycloak service ## annotations: {} ## Headless service properties ## headless: ## @param service.headless.annotations Annotations for the headless service. ## annotations: {} ## @param service.headless.extraPorts Extra ports to expose on Keycloak headless service ## extraPorts: [] ## Keycloak ingress parameters ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/ ## ingress: ## @param ingress.enabled Enable ingress record generation for Keycloak ## enabled: false ## @param ingress.pathType Ingress path type ## pathType: ImplementationSpecific ## @param ingress.apiVersion Force Ingress API version (automatically detected if not set) ## apiVersion: "" ## @param ingress.hostname Default host for the ingress record (evaluated as template) ## hostname: keycloak.local ## @param ingress.ingressClassName IngressClass that will be be used to implement the Ingress (evaluated as template) ## Required if you have more than one IngressClass marked as the default for your cluster ## ingressClassName: "" ## @param ingress.controller The ingress controller type. Currently supports `default` and `gce` ## leave as `default` for most ingress controllers. ## set to `gce` if using the GCE ingress controller ## controller: default ## @param ingress.path Default path for the ingress record ## path: "{{ .Values.httpRelativePath }}" ## @param ingress.servicePort Backend service port to use ## Default is http. Alternative is https. ## servicePort: http ## @param ingress.annotations [object] Additional annotations for the Ingress resource. To enable certificate autogeneration, place here your cert-manager annotations. ## Use this parameter to set the required annotations for cert-manager, see ## ref: https://cert-manager.io/docs/usage/ingress/#supported-annotations ## e.g: ## annotations: ## kubernetes.io/ingress.class: nginx ## cert-manager.io/cluster-issuer: cluster-issuer-name ## annotations: {} ## @param ingress.labels Additional labels for the Ingress resource. ## e.g: ## labels: ## app: keycloak ## labels: {} ## @param ingress.tls Enable TLS configuration for the host defined at `ingress.hostname` parameter ## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" (tpl .Values.ingress.hostname .) }}` ## You can: ## - Use the `ingress.secrets` parameter to create this TLS secret ## - Rely on cert-manager to create it by setting the corresponding annotations ## - Rely on Helm to create self-signed certificates by setting `ingress.selfSigned=true` ## tls: false ## @param ingress.selfSigned Create a TLS secret for this ingress record using self-signed certificates generated by Helm ## selfSigned: false ## @param ingress.extraHosts An array with additional hostname(s) to be covered with the ingress record ## e.g: ## extraHosts: ## - name: keycloak.local ## path: / ## extraHosts: [] ## @param ingress.extraPaths Any additional arbitrary paths that may need to be added to the ingress under the main host. ## For example: The ALB ingress controller requires a special rule for handling SSL redirection. ## extraPaths: ## - path: /* ## backend: ## serviceName: ssl-redirect ## servicePort: use-annotation ## extraPaths: [] ## @param ingress.extraTls The tls configuration for additional hostnames to be covered with this ingress record. ## see: https://kubernetes.io/docs/concepts/services-networking/ingress/#tls ## extraTls: ## - hosts: ## - keycloak.local ## secretName: keycloak.local-tls ## extraTls: [] ## @param ingress.secrets If you're providing your own certificates, please use this to add the certificates as secrets ## key and certificate should start with -----BEGIN CERTIFICATE----- or ## -----BEGIN RSA PRIVATE KEY----- ## ## name should line up with a tlsSecret set further up ## If you're using cert-manager, this is unneeded, as it will create the secret for you if it is not set ## ## It is also possible to create and manage the certificates outside of this helm chart ## Please see README.md for more information ## e.g: ## - name: keycloak.local-tls ## key: ## certificate: ## secrets: [] ## @param ingress.extraRules Additional rules to be covered with this ingress record ## ref: https://kubernetes.io/docs/concepts/services-networking/ingress/#ingress-rules ## e.g: ## extraRules: ## - host: keycloak.local ## http: ## path: / ## backend: ## service: ## name: keycloak ## port: ## name: http ## extraRules: [] ## Network Policy configuration ## ref: https://kubernetes.io/docs/concepts/services-networking/network-policies/ ## networkPolicy: ## @param networkPolicy.enabled Specifies whether a NetworkPolicy should be created ## enabled: true ## @param networkPolicy.allowExternal Don't require server label for connections ## The Policy model to apply. When set to false, only pods with the correct ## server label will have network access to the ports server is listening ## on. When true, server will accept connections from any source ## (with the correct destination port). ## allowExternal: true ## @param networkPolicy.allowExternalEgress Allow the pod to access any range of port and all destinations. ## allowExternalEgress: true ## @param networkPolicy.addExternalClientAccess Allow access from pods with client label set to "true". Ignored if `networkPolicy.allowExternal` is true. ## addExternalClientAccess: true ## @param networkPolicy.kubeAPIServerPorts [array] List of possible endpoints to kube-apiserver (limit to your cluster settings to increase security) ## kubeAPIServerPorts: [443, 6443, 8443] ## @param networkPolicy.extraIngress [array] Add extra ingress rules to the NetworkPolicy ## e.g: ## extraIngress: ## - ports: ## - port: 1234 ## from: ## - podSelector: ## - matchLabels: ## - role: frontend ## - podSelector: ## - matchExpressions: ## - key: role ## operator: In ## values: ## - frontend extraIngress: [] ## @param networkPolicy.extraEgress [array] Add extra ingress rules to the NetworkPolicy ## e.g: ## extraEgress: ## - ports: ## - port: 1234 ## to: ## - podSelector: ## - matchLabels: ## - role: frontend ## - podSelector: ## - matchExpressions: ## - key: role ## operator: In ## values: ## - frontend ## extraEgress: [] ## @param networkPolicy.ingressPodMatchLabels [object] Labels to match to allow traffic from other pods. Ignored if `networkPolicy.allowExternal` is true. ## e.g: ## ingressPodMatchLabels: ## my-client: "true" # ingressPodMatchLabels: {} ## @param networkPolicy.ingressNSMatchLabels [object] Labels to match to allow traffic from other namespaces ## @param networkPolicy.ingressNSPodMatchLabels [object] Pod labels to match to allow traffic from other namespaces ## ingressNSMatchLabels: {} ingressNSPodMatchLabels: {} ## @section Other parameters ## ServiceAccount configuration ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ ## serviceAccount: ## @param serviceAccount.create Specifies whether a ServiceAccount should be created ## create: true ## @param serviceAccount.name The name of the ServiceAccount to use. ## If not set and create is true, a name is generated using the common.names.fullname template ## name: "" ## @param serviceAccount.annotations Additional Service Account annotations (evaluated as a template) ## annotations: {} ## @param serviceAccount.automountServiceAccountToken Automount service account token for the server service account ## automountServiceAccountToken: true ## @param serviceAccount.extraLabels Additional Service Account labels (evaluated as a template) ## extraLabels: {} ## Keycloak Pod Disruption Budget configuration ## ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/ ## @param pdb.create Enable/disable a Pod Disruption Budget creation ## @param pdb.minAvailable Minimum number/percentage of pods that should remain scheduled ## @param pdb.maxUnavailable Maximum number/percentage of pods that may be made unavailable. Defaults to `1` if both `pdb.minAvailable` and `pdb.maxUnavailable` are empty. ## pdb: create: true minAvailable: "" maxUnavailable: "" ## Keycloak Autoscaling configuration ## ref: https://kubernetes.io/docs/concepts/workloads/autoscaling/ ## autoscaling: ## @param autoscaling.vpa.enabled Enable VPA for Keycloak pods ## @param autoscaling.vpa.annotations Annotations for VPA resource ## @param autoscaling.vpa.controlledResources VPA List of resources that the vertical pod autoscaler can control. Defaults to cpu and memory ## @param autoscaling.vpa.maxAllowed VPA Max allowed resources for the pod ## @param autoscaling.vpa.minAllowed VPA Min allowed resources for the pod ## vpa: enabled: false annotations: {} controlledResources: [] maxAllowed: {} minAllowed: {} ## @param autoscaling.vpa.updatePolicy.updateMode Autoscaling update policy ## Specifies whether recommended updates are applied when a Pod is started and whether recommended updates are applied during the life of a Pod ## Possible values are "Off", "Initial", "Recreate", and "Auto". ## updatePolicy: updateMode: Auto ## @param autoscaling.hpa.enabled Enable HPA for Keycloak pods ## @param autoscaling.hpa.minReplicas Minimum number of Keycloak replicas ## @param autoscaling.hpa.maxReplicas Maximum number of Keycloak replicas ## @param autoscaling.hpa.targetCPU Target CPU utilization percentage ## @param autoscaling.hpa.targetMemory Target Memory utilization percentage ## hpa: enabled: false minReplicas: 1 maxReplicas: 11 targetCPU: "" targetMemory: "" ## HPA Scaling Behavior ## ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configurable-scaling-behavior ## behavior: ## HPA behavior when scaling up ## @param autoscaling.hpa.behavior.scaleUp.stabilizationWindowSeconds The number of seconds for which past recommendations should be considered while scaling up ## @param autoscaling.hpa.behavior.scaleUp.selectPolicy The priority of policies that the autoscaler will apply when scaling up ## @param autoscaling.hpa.behavior.scaleUp.policies [array] HPA scaling policies when scaling up ## e.g: ## Policy to scale 20% of the pod in 60s ## - type: Percent ## value: 20 ## periodSeconds: 60 ## scaleUp: stabilizationWindowSeconds: 120 selectPolicy: Max policies: [] ## HPA behavior when scaling down ## @param autoscaling.hpa.behavior.scaleDown.stabilizationWindowSeconds The number of seconds for which past recommendations should be considered while scaling down ## @param autoscaling.hpa.behavior.scaleDown.selectPolicy The priority of policies that the autoscaler will apply when scaling down ## @param autoscaling.hpa.behavior.scaleDown.policies [array] HPA scaling policies when scaling down ## e.g: ## Policy to scale one pod in 300s ## - type: Pods ## value: 1 ## periodSeconds: 300 ## scaleDown: stabilizationWindowSeconds: 300 selectPolicy: Max policies: - type: Pods value: 1 periodSeconds: 300 ## @section Metrics parameters metrics: ## @param metrics.enabled Enable exposing Keycloak metrics ## ref: https://github.com/bitnami/containers/tree/main/bitnami/keycloak#enabling-metrics ## enabled: false ## Keycloak metrics service parameters ## service: ## @param metrics.service.ports.metrics Metrics service Metrics port ## ports: metrics: 9000 ## @param metrics.service.annotations [object] Annotations for enabling prometheus to access the metrics endpoints ## annotations: prometheus.io/scrape: "true" prometheus.io/port: "{{ .Values.metrics.service.ports.metrics }}" ## @param metrics.service.extraPorts [array] Add additional ports to the keycloak metrics service ## extraPorts: [] ## Prometheus Operator ServiceMonitor configuration ## serviceMonitor: ## @param metrics.serviceMonitor.enabled if `true`, creates a Prometheus Operator ServiceMonitor (also requires `metrics.enabled` to be `true`) ## enabled: false ## @param metrics.serviceMonitor.namespace Namespace in which Prometheus is running ## namespace: "" ## @param metrics.serviceMonitor.annotations Additional custom annotations for the ServiceMonitor ## annotations: {} ## @param metrics.serviceMonitor.labels Extra labels for the ServiceMonitor ## labels: {} ## @param metrics.serviceMonitor.jobLabel The name of the label on the target service to use as the job name in Prometheus ## jobLabel: "" ## @param metrics.serviceMonitor.honorLabels honorLabels chooses the metric's labels on collisions with target labels ## honorLabels: false ## @param metrics.serviceMonitor.tlsConfig [object] TLS configuration used for scrape endpoints used by Prometheus ## tlsConfig: {} ## @param metrics.serviceMonitor.interval Interval at which metrics should be scraped. ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint ## e.g: ## interval: 10s ## interval: "" ## @param metrics.serviceMonitor.scrapeTimeout Timeout after which the scrape is ended ## ref: https://github.com/coreos/prometheus-operator/blob/master/Documentation/api.md#endpoint ## e.g: ## scrapeTimeout: 10s ## scrapeTimeout: "" ## @param metrics.serviceMonitor.metricRelabelings Specify additional relabeling of metrics ## metricRelabelings: [] ## @param metrics.serviceMonitor.relabelings Specify general relabeling ## relabelings: [] ## @param metrics.serviceMonitor.selector Prometheus instance selector labels ## ref: https://github.com/bitnami/charts/tree/main/bitnami/prometheus-operator#prometheus-configuration ## selector: ## prometheus: my-prometheus ## selector: {} ## Prometheus Operator alert rules configuration ## prometheusRule: ## @param metrics.prometheusRule.enabled Create PrometheusRule Resource for scraping metrics using PrometheusOperator ## enabled: false ## @param metrics.prometheusRule.namespace Namespace which Prometheus is running in ## namespace: "" ## @param metrics.prometheusRule.labels Additional labels that can be used so PrometheusRule will be discovered by Prometheus ## labels: {} ## @param metrics.prometheusRule.groups Groups, containing the alert rules. ## Example: ## groups: ## - name: Keycloak ## rules: ## - alert: KeycloakInstanceNotAvailable ## annotations: ## message: "Keycloak instance in namespace {{ `{{` }} $labels.namespace {{ `}}` }} has not been available for the last 5 minutes." ## expr: | ## absent(kube_pod_status_ready{namespace="{{ include "common.names.namespace" . }}", condition="true"} * on (pod) kube_pod_labels{pod=~"{{ include "common.names.fullname" . }}-\\d+", namespace="{{ include "common.names.namespace" . }}"}) != 0 ## for: 5m ## labels: ## severity: critical groups: [] ## @section keycloak-config-cli parameters ## Configuration for keycloak-config-cli ## ref: https://github.com/adorsys/keycloak-config-cli ## keycloakConfigCli: ## @param keycloakConfigCli.enabled Whether to enable keycloak-config-cli job ## enabled: false ## Bitnami keycloak-config-cli image ## ref: https://hub.docker.com/r/bitnami/keycloak-config-cli/tags/ ## @param keycloakConfigCli.image.registry [default: REGISTRY_NAME] keycloak-config-cli container image registry ## @param keycloakConfigCli.image.repository [default: REPOSITORY_NAME/keycloak-config-cli] keycloak-config-cli container image repository ## @skip keycloakConfigCli.image.tag keycloak-config-cli container image tag ## @param keycloakConfigCli.image.digest keycloak-config-cli container image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag ## @param keycloakConfigCli.image.pullPolicy keycloak-config-cli container image pull policy ## @param keycloakConfigCli.image.pullSecrets keycloak-config-cli container image pull secrets ## image: registry: docker.io repository: bitnami/keycloak-config-cli tag: 6.4.0-debian-12-r11 digest: "" ## Specify a imagePullPolicy ## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images ## pullPolicy: IfNotPresent ## Optionally specify an array of imagePullSecrets. ## Secrets must be manually created in the namespace. ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ ## e.g: ## pullSecrets: ## - myRegistryKeySecretName ## pullSecrets: [] ## @param keycloakConfigCli.annotations [object] Annotations for keycloak-config-cli job ## annotations: {} ## @param keycloakConfigCli.command Command for running the container (set to default if not set). Use array form ## command: [] ## @param keycloakConfigCli.args Args for running the container (set to default if not set). Use array form ## args: [] ## @param keycloakConfigCli.automountServiceAccountToken Mount Service Account token in pod ## automountServiceAccountToken: true ## @param keycloakConfigCli.hostAliases Job pod host aliases ## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/ ## hostAliases: [] ## Keycloak config CLI resource requests and limits ## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ ## @param keycloakConfigCli.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if keycloakConfigCli.resources is set (keycloakConfigCli.resources is recommended for production). ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 ## resourcesPreset: "small" ## @param keycloakConfigCli.resources Set container requests and limits for different resources like CPU or memory (essential for production workloads) ## Example: ## resources: ## requests: ## cpu: 2 ## memory: 512Mi ## limits: ## cpu: 3 ## memory: 1024Mi ## resources: {} ## keycloak-config-cli containers' Security Context ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container ## @param keycloakConfigCli.containerSecurityContext.enabled Enabled keycloak-config-cli Security Context ## @param keycloakConfigCli.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container ## @param keycloakConfigCli.containerSecurityContext.runAsUser Set keycloak-config-cli Security Context runAsUser ## @param keycloakConfigCli.containerSecurityContext.runAsGroup Set keycloak-config-cli Security Context runAsGroup ## @param keycloakConfigCli.containerSecurityContext.runAsNonRoot Set keycloak-config-cli Security Context runAsNonRoot ## @param keycloakConfigCli.containerSecurityContext.privileged Set keycloak-config-cli Security Context privileged ## @param keycloakConfigCli.containerSecurityContext.readOnlyRootFilesystem Set keycloak-config-cli Security Context readOnlyRootFilesystem ## @param keycloakConfigCli.containerSecurityContext.allowPrivilegeEscalation Set keycloak-config-cli Security Context allowPrivilegeEscalation ## @param keycloakConfigCli.containerSecurityContext.capabilities.drop List of capabilities to be dropped ## @param keycloakConfigCli.containerSecurityContext.seccompProfile.type Set keycloak-config-cli Security Context seccomp profile ## containerSecurityContext: enabled: true seLinuxOptions: {} runAsUser: 1001 runAsGroup: 1001 runAsNonRoot: true privileged: false readOnlyRootFilesystem: true allowPrivilegeEscalation: false capabilities: drop: ["ALL"] seccompProfile: type: "RuntimeDefault" ## keycloak-config-cli pods' Security Context ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod ## @param keycloakConfigCli.podSecurityContext.enabled Enabled keycloak-config-cli pods' Security Context ## @param keycloakConfigCli.podSecurityContext.fsGroupChangePolicy Set filesystem group change policy ## @param keycloakConfigCli.podSecurityContext.sysctls Set kernel settings using the sysctl interface ## @param keycloakConfigCli.podSecurityContext.supplementalGroups Set filesystem extra groups ## @param keycloakConfigCli.podSecurityContext.fsGroup Set keycloak-config-cli pod's Security Context fsGroup ## podSecurityContext: enabled: true fsGroupChangePolicy: Always sysctls: [] supplementalGroups: [] fsGroup: 1001 ## @param keycloakConfigCli.backoffLimit Number of retries before considering a Job as failed ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/job/#pod-backoff-failure-policy ## backoffLimit: 1 ## @param keycloakConfigCli.podLabels Pod extra labels ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ ## podLabels: {} ## @param keycloakConfigCli.podAnnotations Annotations for job pod ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/ ## podAnnotations: {} ## @param keycloakConfigCli.nodeSelector Node labels for pod assignment ## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ ## nodeSelector: {} ## ## @param keycloakConfigCli.tolerations Tolerations for job pod assignment ## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ ## tolerations: [] ## keycloak-config-cli availability-check configuration ## ref: https://github.com/adorsys/keycloak-config-cli#Configuration ## @param keycloakConfigCli.availabilityCheck.enabled Whether to wait until Keycloak is available ## @param keycloakConfigCli.availabilityCheck.timeout Timeout for the availability check (Default is 120s) ## availabilityCheck: enabled: true timeout: "" ## @param keycloakConfigCli.extraEnvVars Additional environment variables to set ## Example: ## extraEnvVars: ## - name: FOO ## value: "bar" ## extraEnvVars: [] ## @param keycloakConfigCli.extraEnvVarsCM ConfigMap with extra environment variables ## extraEnvVarsCM: "" ## @param keycloakConfigCli.extraEnvVarsSecret Secret with extra environment variables ## extraEnvVarsSecret: "" ## @param keycloakConfigCli.extraVolumes Extra volumes to add to the job ## extraVolumes: [] ## @param keycloakConfigCli.extraVolumeMounts Extra volume mounts to add to the container ## extraVolumeMounts: [] ## @param keycloakConfigCli.initContainers Add additional init containers to the Keycloak config cli pod ## Example: ## initContainers: ## - name: your-image-name ## image: your-image ## imagePullPolicy: Always ## ports: ## - name: portname ## containerPort: 1234 ## initContainers: [] ## @param keycloakConfigCli.sidecars Add additional sidecar containers to the Keycloak config cli pod ## Example: ## sidecars: ## - name: your-image-name ## image: your-image ## imagePullPolicy: Always ## ports: ## - name: portname ## containerPort: 1234 ## sidecars: [] ## @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": [] ## } ## realm2.yaml: | ## realm: realm2 ## clients: [] ## configuration: {} ## @param keycloakConfigCli.existingConfigmap ConfigMap with keycloak-config-cli configuration ## NOTE: This will override keycloakConfigCli.configuration ## existingConfigmap: "" ## Automatic Cleanup for Finished Jobs ## @param keycloakConfigCli.cleanupAfterFinished.enabled Enables Cleanup for Finished Jobs ## @param keycloakConfigCli.cleanupAfterFinished.seconds Sets the value of ttlSecondsAfterFinished ## ref: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ ## cleanupAfterFinished: enabled: false seconds: 600 ## @section Default init container parameters ## Default init Containers ## defaultInitContainers: ## 'prepare-write-dirs' init container ## Copies writable directories to an empty dir volume in order to not break the application functionality ## prepareWriteDirs: ## @param defaultInitContainers.prepareWriteDirs.enabled Enable init container that copies writable directories to an empty dir ## enabled: true ## Configure "prepare-write-dirs" init-container Security Context ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.enabled Enabled "prepare-write-dirs" init-containers' Security Context ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in "prepare-write-dirs" init-containers ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.runAsUser Set runAsUser in "prepare-write-dirs" init-containers' Security Context ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.runAsGroup Set runAsGroup in "prepare-write-dirs" init-containers' Security Context ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.runAsNonRoot Set runAsNonRoot in "prepare-write-dirs" init-containers' Security Context ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.privileged Set privileged in "prepare-write-dirs" init-containers' Security Context ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.readOnlyRootFilesystem Set readOnlyRootFilesystem in "prepare-write-dirs" init-containers' Security Context ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.allowPrivilegeEscalation Set allowPrivilegeEscalation in "prepare-write-dirs" init-containers' Security Context ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.capabilities.drop List of capabilities to be dropped in "prepare-write-dirs" init-containers ## @param defaultInitContainers.prepareWriteDirs.containerSecurityContext.seccompProfile.type Set seccomp profile in "prepare-write-dirs" init-containers ## containerSecurityContext: enabled: true seLinuxOptions: {} runAsUser: 1001 runAsGroup: 1001 runAsNonRoot: true privileged: false readOnlyRootFilesystem: true allowPrivilegeEscalation: false capabilities: drop: ["ALL"] seccompProfile: type: "RuntimeDefault" ## Keycloak "prepare-write-dirs" init container resource requests and limits ## ref: http://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ ## @param defaultInitContainers.prepareWriteDirs.resourcesPreset Set Keycloak "prepare-write-dirs" init container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if defaultInitContainers.prepareWriteDirs.resources is set (defaultInitContainers.prepareWriteDirs.resources is recommended for production). ## More information: https://github.com/bitnami/charts/blob/main/bitnami/common/templates/_resources.tpl#L15 ## resourcesPreset: "nano" ## @param defaultInitContainers.prepareWriteDirs.resources Set Keycloak "prepare-write-dirs" init container requests and limits for different resources like CPU or memory (essential for production workloads) ## E.g: ## resources: ## requests: ## cpu: 2 ## memory: 512Mi ## limits: ## cpu: 3 ## memory: 1024Mi ## resources: {} ## @section Database parameters ## PostgreSQL chart configuration ## ref: https://github.com/bitnami/charts/blob/main/bitnami/postgresql/values.yaml ## @param postgresql.enabled Switch to enable or disable the PostgreSQL helm chart ## @param postgresql.auth.postgresPassword Password for the "postgres" admin user. Ignored if `auth.existingSecret` with key `postgres-password` is provided ## @param postgresql.auth.username Name for a custom user to create ## @param postgresql.auth.password Password for the custom user to create ## @param postgresql.auth.database Name for a custom database to create ## @param postgresql.auth.existingSecret Name of existing secret to use for PostgreSQL credentials ## @param postgresql.auth.secretKeys.userPasswordKey Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set. ## @param postgresql.architecture PostgreSQL architecture (`standalone` or `replication`) ## postgresql: enabled: true auth: postgresPassword: "" username: bn_keycloak password: "" database: bitnami_keycloak existingSecret: "" secretKeys: userPasswordKey: password architecture: standalone ## External PostgreSQL configuration ## All of these values are only used when postgresql.enabled is set to false ## @param externalDatabase.host Database host ## @param externalDatabase.port Database port number ## @param externalDatabase.user Non-root username for Keycloak ## @param externalDatabase.password Password for the non-root username for Keycloak ## @param externalDatabase.database Keycloak database name ## @param externalDatabase.schema Keycloak database schema ## @param externalDatabase.existingSecret Name of an existing secret resource containing the database credentials ## @param externalDatabase.existingSecretUserKey Name of an existing secret key containing the database user ## @param externalDatabase.existingSecretPasswordKey Name of an existing secret key containing the database credentials ## @param externalDatabase.annotations Additional custom annotations for external database secret object ## @param externalDatabase.extraParams Additional JDBC connection parameters appended to the JDBC URL (KC_DB_URL). ## externalDatabase: host: "" port: 5432 user: bn_keycloak database: bitnami_keycloak schema: public password: "" existingSecret: "" existingSecretUserKey: "" existingSecretPasswordKey: "" annotations: {} extraParams: ""