fix(helm): use PodDisruptionBudget v1 for newer k8s versions (#16466)

This commit is contained in:
Mathieu Parent
2023-02-06 06:50:45 +01:00
committed by GitHub
parent e47a31f9fc
commit 85ff76e7b0

View File

@@ -1,5 +1,9 @@
{{- if .Values.podDisruptionBudget.enabled }}
{{- if .Capabilities.APIVersions.Has "policy/v1beta1/PodDisruptionBudget") }}
apiVersion: policy/v1beta1
{{- else }}
apiVersion: policy/v1
{{- end }}
kind: PodDisruptionBudget
metadata:
name: minio
@@ -11,4 +15,4 @@ spec:
selector:
matchLabels:
app: {{ template "minio.name" . }}
{{- end }}
{{- end }}