mirror of
https://github.com/minio/minio.git
synced 2025-04-22 11:26:36 -04:00
fix(helm): use PodDisruptionBudget v1 for newer k8s versions (#16466)
This commit is contained in:
parent
e47a31f9fc
commit
85ff76e7b0
@ -1,5 +1,9 @@
|
|||||||
{{- if .Values.podDisruptionBudget.enabled }}
|
{{- if .Values.podDisruptionBudget.enabled }}
|
||||||
|
{{- if .Capabilities.APIVersions.Has "policy/v1beta1/PodDisruptionBudget") }}
|
||||||
apiVersion: policy/v1beta1
|
apiVersion: policy/v1beta1
|
||||||
|
{{- else }}
|
||||||
|
apiVersion: policy/v1
|
||||||
|
{{- end }}
|
||||||
kind: PodDisruptionBudget
|
kind: PodDisruptionBudget
|
||||||
metadata:
|
metadata:
|
||||||
name: minio
|
name: minio
|
||||||
@ -11,4 +15,4 @@ spec:
|
|||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app: {{ template "minio.name" . }}
|
app: {{ template "minio.name" . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user