helm-charts/hydrogen-web/templates/tests/test-connection.yaml
2023-05-20 21:26:39 +02:00

15 lines
394 B
YAML

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