26 lines
1003 B
YAML
26 lines
1003 B
YAML
{{- if .Values.primary.pdb.enabled }}
|
|
apiVersion: policy/v1beta1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: {{ include "mariadb.primary.fullname" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: primary
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if .Values.primary.pdb.minAvailable }}
|
|
minAvailable: {{ .Values.primary.pdb.minAvailable }}
|
|
{{- end }}
|
|
{{- if .Values.primary.pdb.maxUnavailable }}
|
|
maxUnavailable: {{ .Values.primary.pdb.maxUnavailable }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels: {{ include "common.labels.matchLabels" . | nindent 6 }}
|
|
app.kubernetes.io/component: primary
|
|
{{- end }}
|