mirror of
https://github.com/clearml/clearml-helm-charts
synced 2025-01-31 17:16:47 +00:00
4704415662
* Changed: pdr version * Changed: dependency update * Changed: removed eol k8s * Changed: kind versions update * Removed: incompatible version with GH actions * Changed: updated action
13 lines
293 B
YAML
13 lines
293 B
YAML
---
|
|
{{- if .Values.maxUnavailable }}
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: "{{ template "elasticsearch.uname" . }}-pdb"
|
|
spec:
|
|
maxUnavailable: {{ .Values.maxUnavailable }}
|
|
selector:
|
|
matchLabels:
|
|
app: "{{ template "elasticsearch.uname" . }}"
|
|
{{- end }}
|