25 lines
669 B
YAML
25 lines
669 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "openconcho.fullname" . }}-test-spa-root"
|
|
labels:
|
|
{{- include "openconcho.labels" . | nindent 4 }}
|
|
annotations:
|
|
helm.sh/hook: test
|
|
helm.sh/hook-delete-policy: before-hook-creation
|
|
spec:
|
|
restartPolicy: Never
|
|
activeDeadlineSeconds: 60
|
|
containers:
|
|
- name: spa-root
|
|
image: busybox:1.36
|
|
command:
|
|
- sh
|
|
- -c
|
|
- |
|
|
if ! wget -T 10 -q --spider http://{{ include "openconcho.fullname" . }}:{{ .Values.service.port }}/; then
|
|
echo "FAIL: GET / did not return HTTP 200"
|
|
exit 1
|
|
fi
|
|
echo "PASS: / returned HTTP 200"
|