PromucFlow_constructor/deploy/helm/templates/pdb.yml

17 lines
480 B
YAML
Raw Normal View History

{{- if .Values.podDisruptionBudgets.enabled }}
{{- if .Capabilities.APIVersions.Has "policy/v1" -}}
apiVersion: policy/v1
{{- else}}
apiVersion: policy/v1beta1
{{- end }}
kind: PodDisruptionBudget
metadata:
name: "{{ include "appsmith.fullname" . }}-pdb"
namespace: {{ include "appsmith.namespace" . }}
spec:
minAvailable: {{ .Values.podDisruptionBudgets.minAvailable }}
selector:
matchLabels:
{{- include "appsmith.selectorLabels" . | nindent 6 }}
{{- end }}