You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
200 lines
8.5 KiB
200 lines
8.5 KiB
{{- if .Values.cleanupController.enabled -}}
|
|
{{- if not .Values.templating.debug -}}
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ template "kyverno.cleanup-controller.name" . }}
|
|
namespace: {{ template "kyverno.namespace" . }}
|
|
{{- if .Values.webhooksCleanup.autoDeleteWebhooks.enabled }}
|
|
{{- if not .Values.templating.enabled }}
|
|
finalizers:
|
|
- kyverno.io/policywebhooks
|
|
- kyverno.io/ttlwebhooks
|
|
{{- end }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "kyverno.cleanup-controller.labels" . | nindent 4 }}
|
|
{{- with .Values.cleanupController.annotations }}
|
|
annotations:
|
|
{{- tpl (toYaml .) $ | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
replicas: {{ template "kyverno.deployment.replicas" .Values.cleanupController.replicas }}
|
|
revisionHistoryLimit: {{ .Values.cleanupController.revisionHistoryLimit }}
|
|
{{- with .Values.cleanupController.updateStrategy }}
|
|
strategy:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "kyverno.cleanup-controller.matchLabels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
{{- include "kyverno.cleanup-controller.labels" . | nindent 8 }}
|
|
{{- with .Values.cleanupController.podLabels }}
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.podAnnotations }}
|
|
annotations: {{ tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with .Values.cleanupController.imagePullSecrets | default .Values.global.imagePullSecrets }}
|
|
imagePullSecrets:
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.podSecurityContext }}
|
|
securityContext:
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.nodeSelector | default .Values.global.nodeSelector }}
|
|
nodeSelector:
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.tolerations | default .Values.global.tolerations}}
|
|
tolerations:
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.topologySpreadConstraints }}
|
|
topologySpreadConstraints:
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.priorityClassName }}
|
|
priorityClassName: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.hostNetwork }}
|
|
hostNetwork: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.dnsPolicy }}
|
|
dnsPolicy: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.dnsConfig }}
|
|
dnsConfig:
|
|
{{- tpl (toYaml .) $ | nindent 8 }}
|
|
{{- end }}
|
|
{{- if or .Values.cleanupController.antiAffinity.enabled .Values.cleanupController.podAffinity .Values.cleanupController.nodeAffinity }}
|
|
affinity:
|
|
{{- if .Values.cleanupController.antiAffinity.enabled }}
|
|
{{- with .Values.cleanupController.podAntiAffinity }}
|
|
podAntiAffinity:
|
|
{{- tpl (toYaml .) $ | nindent 10 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.podAffinity }}
|
|
podAffinity:
|
|
{{- tpl (toYaml .) $ | nindent 10 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.nodeAffinity }}
|
|
nodeAffinity:
|
|
{{- tpl (toYaml .) $ | nindent 10 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
serviceAccountName: {{ template "kyverno.cleanup-controller.serviceAccountName" . }}
|
|
containers:
|
|
- name: controller
|
|
image: {{ include "kyverno.cleanup-controller.image" (dict "globalRegistry" .Values.global.image.registry "image" .Values.cleanupController.image "defaultTag" .Chart.AppVersion) | quote }}
|
|
imagePullPolicy: {{ .Values.cleanupController.image.pullPolicy }}
|
|
ports:
|
|
- containerPort: {{ .Values.cleanupController.server.port }}
|
|
name: https
|
|
protocol: TCP
|
|
- containerPort: {{ .Values.cleanupController.metering.port }}
|
|
name: metrics
|
|
protocol: TCP
|
|
{{ if .Values.cleanupController.profiling.enabled }}
|
|
- containerPort: {{ .Values.cleanupController.profiling.port }}
|
|
name: profiling-port
|
|
protocol: TCP
|
|
{{- end }}
|
|
args:
|
|
- --caSecretName={{ template "kyverno.cleanup-controller.name" . }}.{{ template "kyverno.namespace" . }}.svc.kyverno-tls-ca
|
|
- --tlsSecretName={{ template "kyverno.cleanup-controller.name" . }}.{{ template "kyverno.namespace" . }}.svc.kyverno-tls-pair
|
|
- --servicePort={{ .Values.cleanupController.service.port }}
|
|
- --cleanupServerPort={{ .Values.cleanupController.server.port }}
|
|
- --webhookServerPort={{ .Values.cleanupController.webhookServer.port }}
|
|
- --resyncPeriod={{ .Values.cleanupController.resyncPeriod | default .Values.global.resyncPeriod }}
|
|
{{- if .Values.webhooksCleanup.autoDeleteWebhooks.enabled }}
|
|
- --autoDeleteWebhooks
|
|
{{- end }}
|
|
{{- if .Values.cleanupController.tracing.enabled }}
|
|
- --enableTracing
|
|
- --tracingAddress={{ .Values.cleanupController.tracing.address }}
|
|
- --tracingPort={{ .Values.cleanupController.tracing.port }}
|
|
{{- with .Values.cleanupController.tracing.creds }}
|
|
- --tracingCreds={{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
- --disableMetrics={{ .Values.cleanupController.metering.disabled }}
|
|
{{- if not .Values.cleanupController.metering.disabled }}
|
|
- --otelConfig={{ .Values.cleanupController.metering.config }}
|
|
- --metricsPort={{ .Values.cleanupController.metering.port }}
|
|
{{- with .Values.cleanupController.metering.collector }}
|
|
- --otelCollector={{ . }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.metering.creds }}
|
|
- --transportCreds={{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- include "kyverno.features.flags" (pick (mergeOverwrite (deepCopy .Values.features) .Values.cleanupController.featuresOverride)
|
|
"deferredLoading"
|
|
"dumpPayload"
|
|
"globalContext"
|
|
"logging"
|
|
"ttlController"
|
|
"protectManagedResources"
|
|
) | nindent 12 }}
|
|
{{- range $key, $value := .Values.cleanupController.extraArgs }}
|
|
{{- if $value }}
|
|
- --{{ $key }}={{ $value }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{ if .Values.cleanupController.profiling.enabled }}
|
|
- --profile=true
|
|
- --profilePort={{ .Values.cleanupController.profiling.port }}
|
|
{{- end }}
|
|
env:
|
|
- name: KYVERNO_DEPLOYMENT
|
|
value: {{ template "kyverno.cleanup-controller.name" . }}
|
|
- name: INIT_CONFIG
|
|
value: {{ template "kyverno.config.configMapName" . }}
|
|
- name: METRICS_CONFIG
|
|
value: {{ template "kyverno.config.metricsConfigMapName" . }}
|
|
- name: KYVERNO_POD_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.name
|
|
- name: KYVERNO_SERVICEACCOUNT_NAME
|
|
value: {{ template "kyverno.cleanup-controller.serviceAccountName" . }}
|
|
- name: KYVERNO_ROLE_NAME
|
|
value: {{ template "kyverno.cleanup-controller.roleName" . }}
|
|
- name: KYVERNO_NAMESPACE
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: metadata.namespace
|
|
- name: KYVERNO_SVC
|
|
value: {{ template "kyverno.cleanup-controller.name" . }}
|
|
{{- with (concat .Values.global.extraEnvVars .Values.cleanupController.extraEnvVars) }}
|
|
{{- toYaml . | nindent 10 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.resources }}
|
|
resources:
|
|
{{- tpl (toYaml .) $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.securityContext }}
|
|
securityContext:
|
|
{{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.startupProbe }}
|
|
startupProbe:
|
|
{{- tpl (toYaml .) $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.livenessProbe }}
|
|
livenessProbe:
|
|
{{- tpl (toYaml .) $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.cleanupController.readinessProbe }}
|
|
readinessProbe:
|
|
{{- tpl (toYaml .) $ | nindent 12 }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|