@@ -31,8 +31,7 @@ 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 :
35- {}
34+ google : {}
3635 # adminEmail: xxxx
3736 # useApplicationDefaultCredentials: true
3837 # targetPrincipal: xxxx
8483# Optionally specify an array of imagePullSecrets.
8584# Secrets must be manually created in the namespace.
8685# ref: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod
87- imagePullSecrets :
88- []
86+ imagePullSecrets : []
8987 # - name: myRegistryKeySecretName
9088
9189# Set a custom containerPort if required.
@@ -176,6 +174,9 @@ serviceAccount:
176174 name :
177175 automountServiceAccountToken : true
178176 annotations : {}
177+ # # imagePullSecrets for the service account
178+ imagePullSecrets : []
179+ # - name: myRegistryKeySecretName
179180
180181# Network policy settings.
181182networkPolicy :
@@ -212,8 +213,35 @@ ingress:
212213 # hosts:
213214 # - chart-example.local
214215
215- resources :
216- {}
216+ # Gateway API HTTPRoute configuration
217+ # Ref: https://gateway-api.sigs.k8s.io/api-types/httproute/
218+ gatewayApi :
219+ enabled : false
220+ # The name of the Gateway resource to attach the HTTPRoute to
221+ # Example:
222+ # gatewayRef:
223+ # name: gateway
224+ # namespace: gateway-system
225+ gatewayRef :
226+ name : " "
227+ namespace : " "
228+ # HTTPRoute rule configuration
229+ # rules:
230+ # - matches:
231+ # - path:
232+ # type: PathPrefix
233+ # value: /
234+ rules : []
235+ # Hostnames to match in the HTTPRoute
236+ # hostnames:
237+ # - chart-example.local
238+ hostnames : []
239+ # Additional labels to add to the HTTPRoute
240+ labels : {}
241+ # Additional annotations to add to the HTTPRoute
242+ annotations : {}
243+
244+ resources : {}
217245 # limits:
218246 # cpu: 100m
219247 # memory: 300Mi
@@ -229,26 +257,22 @@ resizePolicy: []
229257 # - resourceName: memory
230258 # restartPolicy: RestartContainer
231259
232- extraVolumes :
233- []
260+ extraVolumes : []
234261 # - name: ca-bundle-cert
235262 # secret:
236263 # secretName: <secret-name>
237264
238- extraVolumeMounts :
239- []
265+ extraVolumeMounts : []
240266 # - mountPath: /etc/ssl/certs/
241267 # name: ca-bundle-cert
242268
243269# Additional containers to be added to the pod.
244- extraContainers :
245- []
270+ extraContainers : []
246271 # - name: my-sidecar
247272 # image: nginx:latest
248273
249274# Additional Init containers to be added to the pod.
250- extraInitContainers :
251- []
275+ extraInitContainers : []
252276 # - name: wait-for-idp
253277 # image: my-idp-wait:latest
254278 # command:
@@ -348,8 +372,7 @@ autoscaling:
348372 annotations : {}
349373 # Configure HPA behavior policies for scaling if needed
350374 # Ref: https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/#configuring-scaling-behavior
351- behavior :
352- {}
375+ behavior : {}
353376 # scaleDown:
354377 # stabilizationWindowSeconds: 300
355378 # policies:
@@ -402,8 +425,7 @@ initContainers:
402425 seccompProfile :
403426 type : RuntimeDefault
404427 timeout : 180
405- resources :
406- {}
428+ resources : {}
407429 # limits:
408430 # cpu: 100m
409431 # memory: 300Mi
@@ -544,8 +566,7 @@ metrics:
544566 # action: replace
545567
546568# Extra K8s manifests to deploy
547- extraObjects :
548- []
569+ extraObjects : []
549570 # - apiVersion: secrets-store.csi.x-k8s.io/v1
550571 # kind: SecretProviderClass
551572 # metadata:
0 commit comments