@@ -31,7 +31,8 @@ config:
3131 # The name of the cookie that oauth2-proxy will create
3232 # If left empty, it will default to the release name
3333 cookieName : " "
34- google : {}
34+ google :
35+ {}
3536 # adminEmail: xxxx
3637 # useApplicationDefaultCredentials: true
3738 # targetPrincipal: xxxx
8384# Optionally specify an array of imagePullSecrets.
8485# Secrets must be manually created in the namespace.
8586# ref: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
86- imagePullSecrets : []
87+ imagePullSecrets :
88+ []
8789 # - name: myRegistryKeySecretName
8890
8991# Set a custom containerPort if required.
@@ -183,7 +185,7 @@ ingress:
183185 pathType : ImplementationSpecific
184186 # Used to create an Ingress record.
185187 # hosts:
186- # - chart-example.local
188+ # - chart-example.local
187189 # Extra paths to prepend to every host configuration. This is useful when working with annotation based services.
188190 # Warning! The configuration is dependant on your current k8s API version capabilities (networking.k8s.io/v1)
189191 # extraPaths:
@@ -199,35 +201,40 @@ ingress:
199201 # kubernetes.io/ingress.class: nginx
200202 # kubernetes.io/tls-acme: "true"
201203 # tls:
202- # Secrets must be manually created in the namespace.
203- # - secretName: chart-example-tls
204- # hosts:
205- # - chart-example.local
204+ # Secrets must be manually created in the namespace.
205+ # - secretName: chart-example-tls
206+ # hosts:
207+ # - chart-example.local
206208
207- resources : {}
209+ resources :
210+ {}
208211 # limits:
209212 # cpu: 100m
210213 # memory: 300Mi
211214 # requests:
212215 # cpu: 100m
213216 # memory: 300Mi
214217
215- extraVolumes : []
218+ extraVolumes :
219+ []
216220 # - name: ca-bundle-cert
217221 # secret:
218222 # secretName: <secret-name>
219223
220- extraVolumeMounts : []
224+ extraVolumeMounts :
225+ []
221226 # - mountPath: /etc/ssl/certs/
222227 # name: ca-bundle-cert
223228
224229# Additional containers to be added to the pod.
225- extraContainers : []
230+ extraContainers :
231+ []
226232 # - name: my-sidecar
227233 # image: nginx:latest
228234
229235# Additional Init containers to be added to the pod.
230- extraInitContainers : []
236+ extraInitContainers :
237+ []
231238 # - name: wait-for-idp
232239 # image: my-idp-wait:latest
233240 # command:
@@ -288,7 +295,7 @@ securityContext:
288295 allowPrivilegeEscalation : false
289296 capabilities :
290297 drop :
291- - ALL
298+ - ALL
292299 readOnlyRootFilesystem : true
293300 runAsNonRoot : true
294301 runAsUser : 2000
@@ -323,7 +330,8 @@ autoscaling:
323330 annotations : {}
324331 # Configure HPA behavior policies for scaling if needed
325332 # Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configuring-scaling-behavior
326- behavior : {}
333+ behavior :
334+ {}
327335 # scaleDown:
328336 # stabilizationWindowSeconds: 300
329337 # policies:
@@ -376,7 +384,8 @@ initContainers:
376384 seccompProfile :
377385 type : RuntimeDefault
378386 timeout : 180
379- resources : {}
387+ resources :
388+ {}
380389 # limits:
381390 # cpu: 100m
382391 # memory: 300Mi
@@ -431,19 +440,25 @@ sessionStorage:
431440 # - "redis://127.0.0.1:8000"
432441 # - "redis://127.0.0.1:8001"
433442
434- # Enables and configure the automatic deployment of the redis subchart
443+ # Enables and configure the automatic deployment of the redis-ha subchart
435444redis :
436- # provision an instance of the redis sub-chart
445+ # provision an instance of the redis-ha sub-chart
437446 enabled : false
438447 # Redis specific helm chart settings, please see:
439- # https://github.com/bitnami/charts/tree/master/bitnami/redis#parameters
440- # global:
441- # redis:
442- # password: yourpassword
448+ # https://artifacthub.io/packages/helm/dandydev-charts/redis-ha#general-parameters
449+ #
450+ # Recommended:
451+ #
452+ # redisPassword: xxxxx
453+ # replicas: 1
454+ # persistentVolume:
455+ # enabled: false
456+ #
443457 # If you install Redis using this sub chart, make sure that the password of the sub chart matches the password
444458 # you set in sessionStorage.redis.password (see above).
445- # redisPort: 6379
446- # architecture: standalone
459+ #
460+ # If you want to use redis in sentinel mode see:
461+ # https://artifacthub.io/packages/helm/dandydev-charts/redis-ha#redis-sentinel-parameters
447462
448463# Enables apiVersion deprecation checks
449464checkDeprecation : true
@@ -511,7 +526,8 @@ metrics:
511526 # action: replace
512527
513528# Extra K8s manifests to deploy
514- extraObjects : []
529+ extraObjects :
530+ []
515531 # - apiVersion: secrets-store.csi.x-k8s.io/v1
516532 # kind: SecretProviderClass
517533 # metadata:
0 commit comments