mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-02-07 21:23:36 +00:00
13 lines
298 B
YAML
13 lines
298 B
YAML
|
---
|
||
|
{{- if .Values.maxUnavailable }}
|
||
|
apiVersion: policy/v1beta1
|
||
|
kind: PodDisruptionBudget
|
||
|
metadata:
|
||
|
name: "{{ template "elasticsearch.uname" . }}-pdb"
|
||
|
spec:
|
||
|
maxUnavailable: {{ .Values.maxUnavailable }}
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: "{{ template "elasticsearch.uname" . }}"
|
||
|
{{- end }}
|