27 lines
1.1 KiB
YAML
27 lines
1.1 KiB
YAML
{{- if and .Values.notifications.enabled .Values.notifications.bots.slack.enabled .Values.notifications.bots.slack.pdb.enabled }}
|
|
apiVersion: {{ include "argo-cd.apiVersion.pdb" . }}
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: {{ include "argo-cd.notifications.fullname" . }}-bot
|
|
labels:
|
|
{{- include "argo-cd.labels" (dict "context" . "component" .Values.notifications.bots.slack.name "name" .Values.notifications.bots.slack.name) | nindent 4 }}
|
|
{{- with .Values.notifications.bots.slack.pdb.labels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .Values.notifications.bots.slack.pdb.annotations }}
|
|
annotations:
|
|
{{- range $key, $value := . }}
|
|
{{ $key }}: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with .Values.notifications.bots.slack.pdb.maxUnavailable }}
|
|
maxUnavailable: {{ . }}
|
|
{{- else }}
|
|
minAvailable: {{ .Values.notifications.bots.slack.pdb.minAvailable | default 0 }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "argo-cd.selectorLabels" (dict "context" . "component" .Values.notifications.bots.slack.name "name" "metrics") | nindent 6 }}
|
|
{{- end }}
|