diff --git a/helm/wekan/templates/tests/test-http.yaml b/helm/wekan/templates/tests/test-http.yaml new file mode 100644 index 000000000..2ed7e7518 --- /dev/null +++ b/helm/wekan/templates/tests/test-http.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ template "wekan.fullname" . }}-test-http" + labels: + app: {{ template "wekan.name" . }} + chart: {{ template "wekan.chart" . }} + component: wekan + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget', '-O', '/dev/stdout'] + args: ['{{ template "wekan.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never