You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {{- if .Values.podDisruptionBudget -}}
- apiVersion: policy/v1beta1
- kind: PodDisruptionBudget
- metadata:
- name: {{ template "redis-ha.fullname" . }}-pdb
- namespace: {{ .Release.Namespace }}
- labels:
- {{ include "labels.standard" . | indent 4 }}
- spec:
- selector:
- matchLabels:
- release: {{ .Release.Name }}
- app: {{ template "redis-ha.name" . }}
- {{ toYaml .Values.podDisruptionBudget | indent 2 }}
- {{- end -}}
|