helm-charts/hydrogen-web/templates/tests/test-connection.yaml

16 lines
394 B
YAML
Raw Permalink Normal View History

2023-05-20 21:26:39 +02:00
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