Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / platform / components / keycloak-init / components / keycloak-config-cli / values.yaml
1 # Copyright © adorsys GmbH & Co. KG
2 # Modifications © 2022, Deutsche Telekom
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 ---
16 global:
17   pullPolicy: Always
18   persistence: {}
19   dockerHubRepository: docker.io
20
21 fullnameOverride: ""
22 nameOverride: ""
23
24 image:
25   repository: adorsys/keycloak-config-cli
26   tag: "{{ .Chart.AppVersion }}-22.0.4"
27   pullPolicy: IfNotPresent
28   ## Optionally specify an array of imagePullSecrets.
29   ## Secrets must be manually created in the namespace.
30   ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
31   ##
32   pullSecrets: []
33   # - myRegistryKeySecretName
34
35 # Count of re(!)tries. A value of 2 means 3 tries in total.
36 backoffLimit: 1
37
38 # annotations of the Job. Define helm post hook here
39 # currently disabled to see the results and to be compliant with ArgoCD
40 #annotations:
41 #  "helm.sh/hook": "post-install,post-upgrade,post-rollback"
42 #  "helm.sh/hook-delete-policy": "hook-succeeded,before-hook-creation"
43 #  "helm.sh/hook-weight": "5"
44
45 labels: {}
46
47 resources: {}
48   # limits:
49   #   cpu: "100m"
50   #   memory: "1Gi"
51   # requests:
52   #   cpu: "100m"
53 #   memory: "1Gi"
54
55 env:
56   KEYCLOAK_URL: http://keycloak:8080
57   KEYCLOAK_USER: admin
58   IMPORT_PATH: /config/
59
60 secrets: {}
61 #  KEYCLOAK_PASSWORD:
62
63 # Specifies an existing secret to be used for the admin password
64 existingSecret: ""
65
66 # The key in the existing secret that stores the password
67 existingSecretKey: password
68
69 securityContext: {}
70 containerSecurityContext: {}
71
72 ## Additional pod labels
73 ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
74 podLabels: {}
75
76 ## Extra Annotations to be added to pod
77 podAnnotations: {}
78
79 config: {}
80   # <realm name>:
81   #   inline:
82   #     realm: <realm name>
83   #     clients: []
84   # <realm name>:
85   #   file: <path>
86
87 existingConfigSecret: ""
88
89 # Add additional volumes, e.g. for custom secrets
90 extraVolumes: ""
91
92 # Add additional volumes mounts, e. g. for custom secrets
93 extraVolumeMounts: ""
94
95 wait_for_job_container:
96   containers:
97     - 'keycloak-config-cli'