2022-08-12 04:20:19 -04:00
|
|
|
{{- if and .Values.operator.enabled .Values.operator.podDisruptionBudget.enabled }}
|
|
|
|
{{- $component := .Values.operator.podDisruptionBudget }}
|
|
|
|
apiVersion: {{ include "podDisruptionBudget.apiVersion" . }}
|
|
|
|
kind: PodDisruptionBudget
|
|
|
|
metadata:
|
|
|
|
name: cilium-operator
|
|
|
|
namespace: {{ .Release.Namespace }}
|
2023-10-16 13:14:53 -04:00
|
|
|
{{- with .Values.operator.annotations }}
|
|
|
|
annotations:
|
|
|
|
{{- toYaml . | nindent 4 }}
|
|
|
|
{{- end }}
|
2022-08-12 04:20:19 -04:00
|
|
|
labels:
|
|
|
|
io.cilium/app: operator
|
|
|
|
name: cilium-operator
|
2023-10-16 13:14:53 -04:00
|
|
|
app.kubernetes.io/name: cilium-operator
|
|
|
|
app.kubernetes.io/part-of: cilium
|
2022-08-12 04:20:19 -04:00
|
|
|
spec:
|
|
|
|
{{- with $component.maxUnavailable }}
|
|
|
|
maxUnavailable: {{ . }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with $component.minAvailable }}
|
|
|
|
minAvailable: {{ . }}
|
|
|
|
{{- end }}
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
io.cilium/app: operator
|
|
|
|
name: cilium-operator
|
|
|
|
{{- end }}
|