20 lines
531 B
YAML
20 lines
531 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-client
|
|
image: busybox
|
|
command: ['wget', '--no-check-certificate']
|
|
args: ['http://{{ include "exam.host" . }}']
|
|
- name: wget-api
|
|
image: busybox
|
|
command: ['wget', '--no-check-certificate']
|
|
args: ['http://{{ include "exam.host" $ }}/api/ping']
|
|
restartPolicy: Never
|