mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
feat: add helm test for cleanup controller (#6085)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
5c633c3bc5
commit
72bad6403f
3 changed files with 81 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
{{- if .Values.cleanupController.enabled -}}
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: {{ template "kyverno.fullname" . }}-cleanup-controller-liveness
|
||||
namespace: {{ template "kyverno.namespace" . }}
|
||||
labels:
|
||||
{{- include "kyverno.test.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
{{- include "kyverno.test.annotations" . | nindent 4 }}
|
||||
spec:
|
||||
restartPolicy: Never
|
||||
containers:
|
||||
- name: test
|
||||
image: {{ template "kyverno.test.image" . }}
|
||||
imagePullPolicy: {{ template "kyverno.test.imagePullPolicy" . }}
|
||||
{{- with .Values.test.resources }}
|
||||
resources:
|
||||
{{- tpl (toYaml .) $ | nindent 8 }}
|
||||
{{- end }}
|
||||
securityContext:
|
||||
{{- include "kyverno.test.securityContext" . | nindent 8 }}
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- sleep 20 ; wget -O- -S --no-check-certificate https://{{ template "kyverno.cleanup-controller.name" . }}.{{ template "kyverno.namespace" . }}:{{ .Values.cleanupController.service.port }}/health/liveness
|
||||
{{- end -}}
|
|
@ -0,0 +1,27 @@
|
|||
{{- if and .Values.cleanupController.enabled .Values.cleanupController.metricsService.create -}}
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: {{ template "kyverno.fullname" . }}-cleanup-controller-metrics
|
||||
namespace: {{ template "kyverno.namespace" . }}
|
||||
labels:
|
||||
{{- include "kyverno.test.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
{{- include "kyverno.test.annotations" . | nindent 4 }}
|
||||
spec:
|
||||
restartPolicy: Never
|
||||
containers:
|
||||
- name: test
|
||||
image: {{ template "kyverno.test.image" . }}
|
||||
imagePullPolicy: {{ template "kyverno.test.imagePullPolicy" . }}
|
||||
{{- with .Values.test.resources }}
|
||||
resources:
|
||||
{{- tpl (toYaml .) $ | nindent 8 }}
|
||||
{{- end }}
|
||||
securityContext:
|
||||
{{- include "kyverno.test.securityContext" . | nindent 8 }}
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- sleep 20 ; wget -O- -S --no-check-certificate http://{{ template "kyverno.cleanup-controller.name" . }}-metrics.{{ template "kyverno.namespace" . }}:{{ .Values.cleanupController.metricsService.port }}/metrics
|
||||
{{- end -}}
|
|
@ -0,0 +1,27 @@
|
|||
{{- if .Values.cleanupController.enabled -}}
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: {{ template "kyverno.fullname" . }}-cleanup-controller-readiness
|
||||
namespace: {{ template "kyverno.namespace" . }}
|
||||
labels:
|
||||
{{- include "kyverno.test.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
{{- include "kyverno.test.annotations" . | nindent 4 }}
|
||||
spec:
|
||||
restartPolicy: Never
|
||||
containers:
|
||||
- name: test
|
||||
image: {{ template "kyverno.test.image" . }}
|
||||
imagePullPolicy: {{ template "kyverno.test.imagePullPolicy" . }}
|
||||
{{- with .Values.test.resources }}
|
||||
resources:
|
||||
{{- tpl (toYaml .) $ | nindent 8 }}
|
||||
{{- end }}
|
||||
securityContext:
|
||||
{{- include "kyverno.test.securityContext" . | nindent 8 }}
|
||||
command:
|
||||
- /bin/sh
|
||||
- -c
|
||||
- sleep 20 ; wget -O- -S --no-check-certificate https://{{ template "kyverno.cleanup-controller.name" . }}.{{ template "kyverno.namespace" . }}:{{ .Values.cleanupController.service.port }}/health/readiness
|
||||
{{- end -}}
|
Loading…
Add table
Reference in a new issue