ungleich-k8s/apps/matrix/templates/tests/test-connection.yaml
Nico Schottelius afa82532d4 starting matrix
2021-07-01 18:29:33 +02:00

13 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