1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-13 19:28:55 +00:00

fix: image pull policy missing (#8067)

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
Charles-Edouard Brétéché 2023-08-18 17:01:04 +02:00 committed by GitHub
parent 6a817731ed
commit d7771cb835
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 0 deletions

View file

@ -66,3 +66,5 @@ annotations:
description: allow podSecurityContext and securityContext for webhooksCleanup
- kind: added
description: match conditions support in webhooks
- kind: fixed
description: missing image pull policy missing in a couple of deployments

View file

@ -77,6 +77,7 @@ spec:
containers:
- name: controller
image: {{ include "kyverno.background-controller.image" (dict "image" .Values.backgroundController.image "defaultTag" .Chart.AppVersion) | quote }}
imagePullPolicy: {{ .Values.backgroundController.image.pullPolicy }}
ports:
- containerPort: 9443
name: https

View file

@ -77,6 +77,7 @@ spec:
containers:
- name: controller
image: {{ include "kyverno.cleanup-controller.image" (dict "image" .Values.cleanupController.image "defaultTag" .Chart.AppVersion) | quote }}
imagePullPolicy: {{ .Values.cleanupController.image.pullPolicy }}
ports:
- containerPort: 9443
name: https

View file

@ -77,6 +77,7 @@ spec:
containers:
- name: controller
image: {{ include "kyverno.reports-controller.image" (dict "image" .Values.reportsController.image "defaultTag" .Chart.AppVersion) | quote }}
imagePullPolicy: {{ .Values.reportsController.image.pullPolicy }}
ports:
- containerPort: 9443
name: https

View file

@ -306,8 +306,10 @@ customLabels: {}
webhooksCleanup:
# -- Create a helm pre-delete hook to cleanup webhooks.
enabled: true
# -- `kubectl` image to run commands for deleting webhooks.
image: bitnami/kubectl:latest
# -- Image pull secrets
imagePullSecrets: []

View file

@ -41182,6 +41182,7 @@ spec:
containers:
- name: controller
image: "ghcr.io/kyverno/background-controller:latest"
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9443
name: https
@ -41279,6 +41280,7 @@ spec:
containers:
- name: controller
image: "ghcr.io/kyverno/cleanup-controller:latest"
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9443
name: https
@ -41407,6 +41409,7 @@ spec:
containers:
- name: controller
image: "ghcr.io/kyverno/reports-controller:latest"
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9443
name: https