@@ -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
@@ -327,7 +334,8 @@ autoscaling:
327334 annotations : {}
328335 # Configure HPA behavior policies for scaling if needed
329336 # Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configuring-scaling-behavior
330- behavior : {}
337+ behavior :
338+ {}
331339 # scaleDown:
332340 # stabilizationWindowSeconds: 300
333341 # policies:
@@ -380,7 +388,8 @@ initContainers:
380388 seccompProfile :
381389 type : RuntimeDefault
382390 timeout : 180
383- resources : {}
391+ resources :
392+ {}
384393 # limits:
385394 # cpu: 100m
386395 # memory: 300Mi
@@ -435,19 +444,25 @@ sessionStorage:
435444 # - "redis://127.0.0.1:8000"
436445 # - "redis://127.0.0.1:8001"
437446
438- # Enables and configure the automatic deployment of the redis subchart
447+ # Enables and configure the automatic deployment of the redis-ha subchart
439448redis :
440- # provision an instance of the redis sub-chart
449+ # provision an instance of the redis-ha sub-chart
441450 enabled : false
442451 # Redis specific helm chart settings, please see:
443- # https://github.com/bitnami/charts/tree/master/bitnami/redis#parameters
444- # global:
445- # redis:
446- # password: yourpassword
452+ # https://artifacthub.io/packages/helm/dandydev-charts/redis-ha#general-parameters
453+ #
454+ # Recommended:
455+ #
456+ # redisPassword: xxxxx
457+ # replicas: 1
458+ # persistentVolume:
459+ # enabled: false
460+ #
447461 # If you install Redis using this sub chart, make sure that the password of the sub chart matches the password
448462 # you set in sessionStorage.redis.password (see above).
449- # redisPort: 6379
450- # architecture: standalone
463+ #
464+ # If you want to use redis in sentinel mode see:
465+ # https://artifacthub.io/packages/helm/dandydev-charts/redis-ha#redis-sentinel-parameters
451466
452467# Enables apiVersion deprecation checks
453468checkDeprecation : true
@@ -515,7 +530,8 @@ metrics:
515530 # action: replace
516531
517532# Extra K8s manifests to deploy
518- extraObjects : []
533+ extraObjects :
534+ []
519535 # - apiVersion: secrets-store.csi.x-k8s.io/v1
520536 # kind: SecretProviderClass
521537 # metadata:
0 commit comments