kube-exam/helm/exam/templates/tests/test-connection.yaml

16 lines
348 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: "{{ include "exam.fullname" . }}-test-connection"
labels:
{{- include "exam.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "exam.fullname" . }}:5000']
restartPolicy: Never