Argo-CD chart: Configurable dnsPolicy
/ hostNetwork
Signed-off-by: Anthony Hausman <anthonyhausman@gmail.com>
This commit is contained in:
parent
5687377d8f
commit
85a7818efa
4 changed files with 24 additions and 0 deletions
|
@ -312,3 +312,5 @@ spec:
|
|||
{{- with .Values.controller.priorityClassName }}
|
||||
priorityClassName: {{ . }}
|
||||
{{- end }}
|
||||
hostNetwork: {{ .Values.controller.hostNetwork }}
|
||||
dnsPolicy: {{ .Values.controller.dnsPolicy }}
|
||||
|
|
|
@ -356,3 +356,5 @@ spec:
|
|||
{{- with .Values.repoServer.priorityClassName }}
|
||||
priorityClassName: {{ . }}
|
||||
{{- end }}
|
||||
hostNetwork: {{ .Values.repoServer.hostNetwork }}
|
||||
dnsPolicy: {{ .Values.repoServer.dnsPolicy }}
|
||||
|
|
|
@ -415,3 +415,5 @@ spec:
|
|||
{{- with .Values.server.priorityClassName }}
|
||||
priorityClassName: {{ . }}
|
||||
{{- end }}
|
||||
hostNetwork: {{ .Values.server.hostNetwork }}
|
||||
dnsPolicy: {{ .Values.server.dnsPolicy }}
|
||||
|
|
|
@ -580,6 +580,12 @@ controller:
|
|||
# -- Metrics container port
|
||||
metrics: 8082
|
||||
|
||||
# -- Host Network for application controller pods
|
||||
hostNetwork: false
|
||||
|
||||
# -- Alternative DNS policy for application controller pods
|
||||
dnsPolicy: "ClusterFirst"
|
||||
|
||||
# -- Application controller container-level security context
|
||||
# @default -- See [values.yaml]
|
||||
containerSecurityContext:
|
||||
|
@ -1448,6 +1454,12 @@ server:
|
|||
# -- Metrics container port
|
||||
metrics: 8082
|
||||
|
||||
# -- Host Network for Server pods
|
||||
hostNetwork: false
|
||||
|
||||
# -- Alternative DNS policy for Server pods
|
||||
dnsPolicy: "ClusterFirst"
|
||||
|
||||
# -- Server container-level security context
|
||||
# @default -- See [values.yaml]
|
||||
containerSecurityContext:
|
||||
|
@ -1931,6 +1943,12 @@ repoServer:
|
|||
# -- Metrics container port
|
||||
metrics: 8084
|
||||
|
||||
# -- Host Network for Repo server pods
|
||||
hostNetwork: false
|
||||
|
||||
# -- Alternative DNS policy for Repo server pods
|
||||
dnsPolicy: "ClusterFirst"
|
||||
|
||||
# -- Repo server container-level security context
|
||||
# @default -- See [values.yaml]
|
||||
containerSecurityContext:
|
||||
|
|
Loading…
Reference in a new issue