From 72bad6403f675ce7b26a6df2ca812aead32a791b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Thu, 26 Jan 2023 19:58:30 +0100 Subject: [PATCH] feat: add helm test for cleanup controller (#6085) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché Signed-off-by: Charles-Edouard Brétéché --- .../tests/cleanup-controller-liveness.yaml | 27 +++++++++++++++++++ .../tests/cleanup-controller-metrics.yaml | 27 +++++++++++++++++++ .../tests/cleanup-controller-readiness.yaml | 27 +++++++++++++++++++ 3 files changed, 81 insertions(+) create mode 100644 charts/kyverno/templates/tests/cleanup-controller-liveness.yaml create mode 100644 charts/kyverno/templates/tests/cleanup-controller-metrics.yaml create mode 100644 charts/kyverno/templates/tests/cleanup-controller-readiness.yaml diff --git a/charts/kyverno/templates/tests/cleanup-controller-liveness.yaml b/charts/kyverno/templates/tests/cleanup-controller-liveness.yaml new file mode 100644 index 0000000000..da5e743eb5 --- /dev/null +++ b/charts/kyverno/templates/tests/cleanup-controller-liveness.yaml @@ -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 -}} diff --git a/charts/kyverno/templates/tests/cleanup-controller-metrics.yaml b/charts/kyverno/templates/tests/cleanup-controller-metrics.yaml new file mode 100644 index 0000000000..9e581c764c --- /dev/null +++ b/charts/kyverno/templates/tests/cleanup-controller-metrics.yaml @@ -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 -}} diff --git a/charts/kyverno/templates/tests/cleanup-controller-readiness.yaml b/charts/kyverno/templates/tests/cleanup-controller-readiness.yaml new file mode 100644 index 0000000000..33e6fdc8b9 --- /dev/null +++ b/charts/kyverno/templates/tests/cleanup-controller-readiness.yaml @@ -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 -}}