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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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