new changes
Signed-off-by: Rupin Solanki <rupinsolanki@Rupins-MacBook-Pro.local>
This commit is contained in:
parent
1e32a96033
commit
9e2949fb08
9 changed files with 85 additions and 263 deletions
|
@ -263,45 +263,18 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
{{- tpl (toYaml .) $ | nindent 6 }}
|
{{- tpl (toYaml .) $ | nindent 6 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.controller.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.controller.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.controller.nodeSelector }}
|
|
||||||
{{- with .Values.controller.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.controller.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.controller.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.controller.tolerations }}
|
|
||||||
{{- with .Values.controller.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.controller.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.controller.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.controller.affinity }}
|
|
||||||
{{- with .Values.controller.affinity }}
|
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.controller.topologySpreadConstraints }}
|
{{- with .Values.controller.topologySpreadConstraints }}
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
{{- range $constraint := . }}
|
{{- range $constraint := . }}
|
||||||
|
|
|
@ -131,45 +131,18 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
{{- tpl (toYaml .) $ | nindent 6 }}
|
{{- tpl (toYaml .) $ | nindent 6 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.applicationSet.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.applicationSet.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.applicationSet.nodeSelector }}
|
|
||||||
{{- with .Values.applicationSet.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.applicationSet.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.applicationSet.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.applicationSet.affinity }}
|
|
||||||
{{- with .Values.applicationSet.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.applicationSet.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.applicationSet.tolerations }}
|
|
||||||
{{- with .Values.applicationSet.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.applicationSet.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
affinity:
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.applicationSet.priorityClassName }}
|
{{- with .Values.applicationSet.priorityClassName }}
|
||||||
priorityClassName: {{ . }}
|
priorityClassName: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -48,43 +48,16 @@ spec:
|
||||||
{{- toYaml .Values.notifications.bots.slack.resources | nindent 12 }}
|
{{- toYaml .Values.notifications.bots.slack.resources | nindent 12 }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.notifications.bots.slack.containerSecurityContext | nindent 12 }}
|
{{- toYaml .Values.notifications.bots.slack.containerSecurityContext | nindent 12 }}
|
||||||
{{- if or .Values.notifications.bots.slack.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.notifications.bots.slack.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.notifications.bots.slack.nodeSelector }}
|
|
||||||
{{- with .Values.notifications.bots.slack.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.notifications.bots.slack.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.notifications.bots.slack.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.notifications.bots.slack.affinity }}
|
|
||||||
{{- with .Values.notifications.bots.slack.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.notifications.bots.slack.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.notifications.bots.slack.tolerations }}
|
|
||||||
{{- with .Values.notifications.bots.slack.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.notifications.bots.slack.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
affinity:
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -88,45 +88,18 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
{{- tpl (toYaml . ) $ | nindent 8 }}
|
{{- tpl (toYaml . ) $ | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.notifications.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.notifications.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.notifications.nodeSelector }}
|
|
||||||
{{- with .Values.notifications.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.notifications.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.notifications.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.notifications.affinity }}
|
|
||||||
{{- with .Values.notifications.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.notifications.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.notifications.tolerations }}
|
|
||||||
{{- with .Values.notifications.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.notifications.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
affinity:
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.notifications.priorityClassName }}
|
{{- with .Values.notifications.priorityClassName }}
|
||||||
priorityClassName: {{ . }}
|
priorityClassName: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -289,45 +289,18 @@ spec:
|
||||||
{{- with .Values.repoServer.initContainers }}
|
{{- with .Values.repoServer.initContainers }}
|
||||||
{{- tpl (toYaml .) $ | nindent 6 }}
|
{{- tpl (toYaml .) $ | nindent 6 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.repoServer.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.repoServer.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.repoServer.nodeSelector }}
|
|
||||||
{{- with .Values.repoServer.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.repoServer.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.repoServer.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.repoServer.tolerations }}
|
|
||||||
{{- with .Values.repoServer.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.repoServer.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.repoServer.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.repoServer.affinity }}
|
|
||||||
{{- with .Values.repoServer.affinity }}
|
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.repoServer.topologySpreadConstraints }}
|
{{- with .Values.repoServer.topologySpreadConstraints }}
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
{{- range $constraint := . }}
|
{{- range $constraint := . }}
|
||||||
|
|
|
@ -340,45 +340,18 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
{{- tpl (toYaml .) $ | nindent 6 }}
|
{{- tpl (toYaml .) $ | nindent 6 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.server.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.server.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.server.nodeSelector }}
|
|
||||||
{{- with .Values.server.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.server.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.server.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.server.tolerations }}
|
|
||||||
{{- with .Values.server.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.server.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.server.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.server.affinity }}
|
|
||||||
{{- with .Values.server.affinity }}
|
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.server.topologySpreadConstraints }}
|
{{- with .Values.server.topologySpreadConstraints }}
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
{{- range $constraint := . }}
|
{{- range $constraint := . }}
|
||||||
|
|
|
@ -138,45 +138,18 @@ spec:
|
||||||
{{- with .Values.dex.initContainers }}
|
{{- with .Values.dex.initContainers }}
|
||||||
{{- tpl (toYaml .) $ | nindent 6 }}
|
{{- tpl (toYaml .) $ | nindent 6 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.dex.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.dex.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.dex.nodeSelector }}
|
|
||||||
{{- with .Values.dex.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.dex.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.dex.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.dex.tolerations }}
|
|
||||||
{{- with .Values.dex.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.dex.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.dex.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.dex.affinity }}
|
|
||||||
{{- with .Values.dex.affinity }}
|
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.dex.topologySpreadConstraints }}
|
{{- with .Values.dex.topologySpreadConstraints }}
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
{{- range $constraint := . }}
|
{{- range $constraint := . }}
|
||||||
|
|
|
@ -98,45 +98,18 @@ spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
{{- tpl (toYaml .) $ | nindent 6 }}
|
{{- tpl (toYaml .) $ | nindent 6 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if or .Values.redis.nodeSelector .Values.global.nodeSelector }}
|
{{- with .Values.redis.nodeSelector | default .Values.global.nodeSelector }}
|
||||||
{{- if .Values.redis.nodeSelector }}
|
|
||||||
{{- with .Values.redis.nodeSelector }}
|
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.redis.tolerations | default .Values.global.tolerations }}
|
||||||
{{- with .Values.global.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.redis.tolerations .Values.global.tolerations }}
|
|
||||||
{{- if .Values.redis.tolerations }}
|
|
||||||
{{- with .Values.redis.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- with .Values.redis.affinity | default .Values.global.affinity }}
|
||||||
{{- with .Values.global.tolerations }}
|
|
||||||
tolerations:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- if or .Values.redis.affinity .Values.global.affinity }}
|
|
||||||
{{- if .Values.redis.affinity }}
|
|
||||||
{{- with .Values.redis.affinity }}
|
|
||||||
affinity:
|
affinity:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
|
||||||
{{- with .Values.global.affinity }}
|
|
||||||
affinity:
|
|
||||||
{{- toYaml . | nindent 8 }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
{{- with .Values.redis.topologySpreadConstraints }}
|
{{- with .Values.redis.topologySpreadConstraints }}
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
{{- range $constraint := . }}
|
{{- range $constraint := . }}
|
||||||
|
|
|
@ -87,13 +87,22 @@ global:
|
||||||
# fsGroup: 999
|
# fsGroup: 999
|
||||||
|
|
||||||
# -- [Node selector]
|
# -- [Node selector]
|
||||||
nodeSelector: {}
|
nodeSelector:
|
||||||
|
globalkey1 : globalValue1
|
||||||
|
globalkey2 : globalValue2
|
||||||
|
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key: globalKey1
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
- key: globalKey2
|
||||||
|
operator: "NoExists"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
|
||||||
# -- Assign custom [affinity] rules to the deployment
|
# -- Assign custom [affinity] rules to the deployment
|
||||||
affinity: {}
|
affinity:
|
||||||
|
globalKey: globalAffinity
|
||||||
# -- Mapping between IP and hostnames that will be injected as entries in the pod's hosts files
|
# -- Mapping between IP and hostnames that will be injected as entries in the pod's hosts files
|
||||||
hostAliases: []
|
hostAliases: []
|
||||||
# - ip: 10.20.30.40
|
# - ip: 10.20.30.40
|
||||||
|
@ -626,12 +635,18 @@ controller:
|
||||||
|
|
||||||
# -- [Node selector]
|
# -- [Node selector]
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
|
# key1: localValue
|
||||||
|
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key1: localValueContoller
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
|
||||||
# -- Assign custom [affinity] rules to the deployment
|
# -- Assign custom [affinity] rules to the deployment
|
||||||
affinity: {}
|
affinity:
|
||||||
|
localKey: localValueController
|
||||||
|
|
||||||
|
|
||||||
# -- Assign custom [TopologySpreadConstraints] rules to the application controller
|
# -- Assign custom [TopologySpreadConstraints] rules to the application controller
|
||||||
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
||||||
|
@ -955,9 +970,13 @@ dex:
|
||||||
servicePortMetrics: 5558
|
servicePortMetrics: 5558
|
||||||
|
|
||||||
# -- [Node selector]
|
# -- [Node selector]
|
||||||
nodeSelector: {}
|
nodeSelector:
|
||||||
|
key : valueDexLocal
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key: dexValue
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
# -- Assign custom [affinity] rules to the deployment
|
# -- Assign custom [affinity] rules to the deployment
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
|
@ -1081,10 +1100,14 @@ redis:
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
|
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key: LOCSLKeyRedis
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
|
|
||||||
# -- Assign custom [affinity] rules to the deployment
|
# -- Assign custom [affinity] rules to the deployment
|
||||||
affinity: {}
|
affinity:
|
||||||
|
key : vLAUEaFFINITY
|
||||||
|
|
||||||
# -- Assign custom [TopologySpreadConstraints] rules to redis
|
# -- Assign custom [TopologySpreadConstraints] rules to redis
|
||||||
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
||||||
|
@ -1464,9 +1487,13 @@ server:
|
||||||
timeoutSeconds: 1
|
timeoutSeconds: 1
|
||||||
|
|
||||||
# -- [Node selector]
|
# -- [Node selector]
|
||||||
nodeSelector: {}
|
nodeSelector:
|
||||||
|
key: localKeyServerNodeSel
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key: globalKeysSERVER
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
# -- Assign custom [affinity] rules to the deployment
|
# -- Assign custom [affinity] rules to the deployment
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
|
||||||
|
@ -1946,11 +1973,16 @@ repoServer:
|
||||||
timeoutSeconds: 1
|
timeoutSeconds: 1
|
||||||
|
|
||||||
# -- [Node selector]
|
# -- [Node selector]
|
||||||
nodeSelector: {}
|
nodeSelector:
|
||||||
|
key : localRepoServerNS
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key: localKeyReposSERVER
|
||||||
|
operator: "Exists"
|
||||||
|
effect: "NoSchedule"
|
||||||
# -- Assign custom [affinity] rules to the deployment
|
# -- Assign custom [affinity] rules to the deployment
|
||||||
affinity: {}
|
affinity:
|
||||||
|
key : localRepoServerLocalAffinity
|
||||||
|
|
||||||
# -- Assign custom [TopologySpreadConstraints] rules to the repo server
|
# -- Assign custom [TopologySpreadConstraints] rules to the repo server
|
||||||
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
## Ref: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
|
||||||
|
@ -2287,7 +2319,8 @@ applicationSet:
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
|
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key: applicationSetValue
|
||||||
|
|
||||||
# -- Assign custom [affinity] rules
|
# -- Assign custom [affinity] rules
|
||||||
affinity: {}
|
affinity: {}
|
||||||
|
@ -2519,13 +2552,17 @@ notifications:
|
||||||
- ALL
|
- ALL
|
||||||
|
|
||||||
# -- [Node selector]
|
# -- [Node selector]
|
||||||
nodeSelector: {}
|
nodeSelector:
|
||||||
|
key: localRepoServerNS
|
||||||
|
|
||||||
# -- [Tolerations] for use with node taints
|
# -- [Tolerations] for use with node taints
|
||||||
tolerations: []
|
tolerations:
|
||||||
|
- key : localRepoServerNotification
|
||||||
|
operator: nolocal
|
||||||
|
|
||||||
# -- Assign custom [affinity] rules
|
# -- Assign custom [affinity] rules
|
||||||
affinity: {}
|
affinity:
|
||||||
|
key : NotificationAffinity
|
||||||
|
|
||||||
# -- Priority class for the notifications controller pods
|
# -- Priority class for the notifications controller pods
|
||||||
priorityClassName: ""
|
priorityClassName: ""
|
||||||
|
@ -2825,7 +2862,7 @@ notifications:
|
||||||
slack:
|
slack:
|
||||||
# -- Enable slack bot
|
# -- Enable slack bot
|
||||||
## You have to set secret.notifiers.slack.signingSecret
|
## You have to set secret.notifiers.slack.signingSecret
|
||||||
enabled: false
|
enabled: true
|
||||||
|
|
||||||
## Slack bot Pod Disruption Budget
|
## Slack bot Pod Disruption Budget
|
||||||
## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
## Ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/
|
||||||
|
@ -2906,4 +2943,5 @@ notifications:
|
||||||
tolerations: []
|
tolerations: []
|
||||||
|
|
||||||
# -- [Node selector]
|
# -- [Node selector]
|
||||||
nodeSelector: {}
|
nodeSelector:
|
||||||
|
key : localRepoServerSlack
|
||||||
|
|
Loading…
Reference in a new issue