Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ spec:
- --upstream=http://127.0.0.1:8080/
- --logtostderr=true
- --v=0
{{- with .Values.controller.kubeRbacProxy.extraArgs }}
{{- toYaml . | nindent 8 }}
{{- end }}
env:
- name: KUBERNETES_CLUSTER_DOMAIN
value: {{ .Values.controller.kubernetesClusterDomain }}
Expand Down
9 changes: 9 additions & 0 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,15 @@ controller:
cpu: 5m
memory: 64Mi

# Defines additional commandline arguments to be passed to the kube-rbac-proxy container.
# Example:
# ```yaml
# extraArgs:
# - --client-ca-file=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt
# ```
# @type: array
extraArgs: []

# Image pull secret to use for private container registry authentication which will be applied to the controllers
# service account. Alternatively, the value may be specified as an array of strings.
# Example:
Expand Down
Loading