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 }}
|
{{- with .Values.controller.priorityClassName }}
|
||||||
priorityClassName: {{ . }}
|
priorityClassName: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
hostNetwork: {{ .Values.controller.hostNetwork }}
|
||||||
|
dnsPolicy: {{ .Values.controller.dnsPolicy }}
|
||||||
|
|
|
@ -356,3 +356,5 @@ spec:
|
||||||
{{- with .Values.repoServer.priorityClassName }}
|
{{- with .Values.repoServer.priorityClassName }}
|
||||||
priorityClassName: {{ . }}
|
priorityClassName: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
hostNetwork: {{ .Values.repoServer.hostNetwork }}
|
||||||
|
dnsPolicy: {{ .Values.repoServer.dnsPolicy }}
|
||||||
|
|
|
@ -415,3 +415,5 @@ spec:
|
||||||
{{- with .Values.server.priorityClassName }}
|
{{- with .Values.server.priorityClassName }}
|
||||||
priorityClassName: {{ . }}
|
priorityClassName: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
hostNetwork: {{ .Values.server.hostNetwork }}
|
||||||
|
dnsPolicy: {{ .Values.server.dnsPolicy }}
|
||||||
|
|
|
@ -580,6 +580,12 @@ controller:
|
||||||
# -- Metrics container port
|
# -- Metrics container port
|
||||||
metrics: 8082
|
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
|
# -- Application controller container-level security context
|
||||||
# @default -- See [values.yaml]
|
# @default -- See [values.yaml]
|
||||||
containerSecurityContext:
|
containerSecurityContext:
|
||||||
|
@ -1448,6 +1454,12 @@ server:
|
||||||
# -- Metrics container port
|
# -- Metrics container port
|
||||||
metrics: 8082
|
metrics: 8082
|
||||||
|
|
||||||
|
# -- Host Network for Server pods
|
||||||
|
hostNetwork: false
|
||||||
|
|
||||||
|
# -- Alternative DNS policy for Server pods
|
||||||
|
dnsPolicy: "ClusterFirst"
|
||||||
|
|
||||||
# -- Server container-level security context
|
# -- Server container-level security context
|
||||||
# @default -- See [values.yaml]
|
# @default -- See [values.yaml]
|
||||||
containerSecurityContext:
|
containerSecurityContext:
|
||||||
|
@ -1931,6 +1943,12 @@ repoServer:
|
||||||
# -- Metrics container port
|
# -- Metrics container port
|
||||||
metrics: 8084
|
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
|
# -- Repo server container-level security context
|
||||||
# @default -- See [values.yaml]
|
# @default -- See [values.yaml]
|
||||||
containerSecurityContext:
|
containerSecurityContext:
|
||||||
|
|
Loading…
Reference in a new issue