14 lines
286 B
YAML
14 lines
286 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: "{{ tpl .Values.identifier . }}-test-connection"
|
||
|
annotations:
|
||
|
"helm.sh/hook": test
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: wget
|
||
|
image: busybox
|
||
|
command: ['wget']
|
||
|
args: ['https://{{ tpl .Values.fqdn . }}']
|
||
|
restartPolicy: Never
|