mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
23 lines
737 B
YAML
23 lines
737 B
YAML
{{- if and .Values.preflight.enabled .Values.preflight.validateCNPs .Values.preflight.podDisruptionBudget.enabled }}
|
|
{{- $component := .Values.preflight.podDisruptionBudget }}
|
|
apiVersion: {{ include "podDisruptionBudget.apiVersion" . }}
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: cilium-pre-flight-check
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
k8s-app: cilium-pre-flight-check-deployment
|
|
kubernetes.io/cluster-service: "true"
|
|
spec:
|
|
{{- with $component.maxUnavailable }}
|
|
maxUnavailable: {{ . }}
|
|
{{- end }}
|
|
{{- with $component.minAvailable }}
|
|
minAvailable: {{ . }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: cilium-pre-flight-check-deployment
|
|
kubernetes.io/cluster-service: "true"
|
|
{{- end }}
|