added pdb version detection (#260)
* added pdb version detection * refresh * Update bookkeeper-pdb.yaml update the capabilities syntax * Update broker-pdb.yaml update capability syntax * Update proxy-pdb.yaml update capability version syntax * Update zookeeper-pdb.yaml update capability version syntax * Update zookeeper-pdb.yaml fix typo * Update bookkeeper-pdb.yaml Co-authored-by: Marvin Cai <cai19930303@gmail.com> Fixes pod disruption budget version warning ### Motivation PDB policy api version, v1beta1 is deprecated in k8s1.21+ (not available in 1.25+). ### Modifications zookeeper-pdb, proxy-pdb, broker-pdb and bookkeepr-pdb templates are modified. If k8s api-resources container policy/v1, the *-pdb.yaml will generate respective apiVersion. ### Verifying this change - [ ] Make sure that the change passes the CI checks.
This commit is contained in:
parent
89f28bca9c
commit
816d88c942
@ -19,7 +19,12 @@
|
||||
|
||||
{{- if .Values.components.bookkeeper }}
|
||||
{{- if .Values.bookkeeper.pdb.usePolicy }}
|
||||
# pdb version detection
|
||||
{{- if semverCompare "<1.21-0" .Capabilities.KubeVersion.Version }}
|
||||
apiVersion: policy/v1beta1
|
||||
{{- else }}
|
||||
apiVersion: policy/v1
|
||||
{{- end }}
|
||||
kind: PodDisruptionBudget
|
||||
metadata:
|
||||
name: "{{ template "pulsar.fullname" . }}-{{ .Values.bookkeeper.component }}"
|
||||
|
||||
@ -19,7 +19,12 @@
|
||||
|
||||
{{- if .Values.components.broker }}
|
||||
{{- if .Values.broker.pdb.usePolicy }}
|
||||
# pdb version detection
|
||||
{{- if semverCompare "<1.21-0" .Capabilities.KubeVersion.Version }}
|
||||
apiVersion: policy/v1beta1
|
||||
{{- else }}
|
||||
apiVersion: policy/v1
|
||||
{{- end }}
|
||||
kind: PodDisruptionBudget
|
||||
metadata:
|
||||
name: "{{ template "pulsar.fullname" . }}-{{ .Values.broker.component }}"
|
||||
|
||||
@ -19,7 +19,12 @@
|
||||
|
||||
{{- if or .Values.components.proxy .Values.extra.proxy }}
|
||||
{{- if .Values.proxy.pdb.usePolicy }}
|
||||
# pdb version detection
|
||||
{{- if semverCompare "<1.21-0" .Capabilities.KubeVersion.Version }}
|
||||
apiVersion: policy/v1beta1
|
||||
{{- else }}
|
||||
apiVersion: policy/v1
|
||||
{{- end }}
|
||||
kind: PodDisruptionBudget
|
||||
metadata:
|
||||
name: "{{ template "pulsar.fullname" . }}-{{ .Values.proxy.component }}"
|
||||
|
||||
@ -20,7 +20,12 @@
|
||||
# deploy zookeeper only when `components.zookeeper` is true
|
||||
{{- if .Values.components.zookeeper }}
|
||||
{{- if .Values.zookeeper.pdb.usePolicy }}
|
||||
# pdb version detection
|
||||
{{- if semverCompare "<1.21-0" .Capabilities.KubeVersion.Version }}
|
||||
apiVersion: policy/v1beta1
|
||||
{{- else }}
|
||||
apiVersion: policy/v1
|
||||
{{- end }}
|
||||
kind: PodDisruptionBudget
|
||||
metadata:
|
||||
name: "{{ template "pulsar.fullname" . }}-{{ .Values.zookeeper.component }}"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user