This repository was archived by the owner on Jul 26, 2022. It is now read-only.
File tree 3 files changed +8
-1
lines changed
charts/kubernetes-external-secrets
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ The following table lists the configurable parameters of the `kubernetes-externa
105
105
| ` tolerations ` | List of node taints to tolerate (requires Kubernetes >= 1.6) | ` [] ` |
106
106
| ` affinity ` | Affinity for pod assignment | ` {} ` |
107
107
| ` resources ` | Pod resource requests & limits | ` {} ` |
108
+ | ` dnsConfig ` | Dns Config for pod. | ` {} ` |
108
109
| ` imagePullSecrets ` | Reference to one or more secrets to be used when pulling images | ` [] ` |
109
110
| ` serviceMonitor.enabled ` | Enable the creation of a serviceMonitor object for the Prometheus operator | ` false ` |
110
111
| ` serviceMonitor.interval ` | The interval the Prometheus endpoint is scraped | ` 30s ` |
Original file line number Diff line number Diff line change 67
67
readOnly : true
68
68
{{- end }}
69
69
{{- end }}
70
+ {{- with .Values.dnsConfig }}
71
+ dnsConfig :
72
+ {{- toYaml . | nindent 8 }}
73
+ {{- end }}
70
74
{{- with .Values.securityContext }}
71
75
securityContext :
72
76
{{- toYaml . | nindent 8 }}
90
94
secret :
91
95
secretName : {{ $value.secret }}
92
96
{{- end }}
93
- {{- end }}
97
+ {{- end }}
Original file line number Diff line number Diff line change @@ -83,6 +83,8 @@ fullnameOverride: ""
83
83
podAnnotations : {}
84
84
podLabels : {}
85
85
86
+ dnsConfig : {}
87
+
86
88
securityContext :
87
89
runAsNonRoot : true
88
90
# Required for use of IRSA, see https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts-technical-overview.html
You can’t perform that action at this time.
0 commit comments