2020-06-09 18:33:29 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: {{ include "argocd-notifications.name" . }}-controller
|
|
|
|
labels:
|
|
|
|
{{- include "argocd-notifications.labels" . | nindent 4 }}
|
|
|
|
spec:
|
2020-06-12 18:48:57 +00:00
|
|
|
strategy:
|
|
|
|
{{- .Values.updateStrategy | toYaml | nindent 4 }}
|
2020-06-09 18:33:29 +00:00
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
{{- include "argocd-notifications.selectorLabels" . | nindent 6 }}
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
{{- include "argocd-notifications.selectorLabels" . | nindent 8 }}
|
|
|
|
spec:
|
|
|
|
{{- with .Values.imagePullSecrets }}
|
|
|
|
imagePullSecrets:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
serviceAccountName: {{ include "argocd-notifications.serviceAccountName" . }}
|
|
|
|
containers:
|
|
|
|
- name: {{ include "argocd-notifications.name" . }}-controller
|
|
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag}}"
|
|
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
|
|
resources:
|
|
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
|
|
command:
|
|
|
|
- /app/argocd-notifications
|
|
|
|
- controller
|
|
|
|
{{- with .Values.nodeSelector }}
|
|
|
|
nodeSelector:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.affinity }}
|
|
|
|
affinity:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.tolerations }}
|
|
|
|
tolerations:
|
|
|
|
{{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|