{{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} {{- if and (not .Values.configsvr.external.host) .Values.configsvr.pdb.create }} kind: PodDisruptionBudget apiVersion: {{ include "common.capabilities.policy.apiVersion" . }} metadata: name: {{ printf "%s-configsvr" (include "common.names.fullname" .) }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }} app.kubernetes.io/component: configsvr {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} spec: {{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.configsvr.podLabels .Values.common.podLabels .Values.commonLabels ) "context" . ) }} selector: matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }} app.kubernetes.io/component: configsvr {{- if .Values.configsvr.pdb.minAvailable }} minAvailable: {{ .Values.configsvr.pdb.minAvailable | int }} {{- end }} {{- if .Values.configsvr.pdb.maxUnavailable }} maxUnavailable: {{ .Values.configsvr.pdb.maxUnavailable | int }} {{- end }} {{- end -}}