mirror of
https://github.com/bitnami/charts.git
synced 2026-03-13 06:47:24 +08:00
33 lines
1.5 KiB
YAML
33 lines
1.5 KiB
YAML
{{- /*
|
|
Copyright VMware, Inc.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if .Values.controller.pdb.enabled }}
|
|
apiVersion: {{ include "common.capabilities.policy.apiVersion" . }}
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: {{ include "argo-workflows.controller.fullname" . }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
{{- $versionLabel := dict "app.kubernetes.io/version" ( include "common.images.version" ( dict "imageRoot" .Values.controller.image "chart" .Chart ) ) }}
|
|
{{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.commonLabels $versionLabel ) "context" . ) }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/part-of: argo-workflows
|
|
app.kubernetes.io/component: controller
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if .Values.controller.pdb.minAvailable }}
|
|
minAvailable: {{ .Values.controller.pdb.minAvailable }}
|
|
{{- else if .Values.controller.pdb.maxUnavailable }}
|
|
maxUnavailable: {{ .Values.controller.pdb.maxUnavailable }}
|
|
{{- else }}
|
|
minAvailable: 0
|
|
{{- end }}
|
|
{{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.controller.podLabels .Values.commonLabels ) "context" . ) }}
|
|
selector:
|
|
matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
|
|
app.kubernetes.io/component: controller
|
|
{{- end }}
|