fhem-docker_helm-chart/templates/tests/test-connection.yaml
Marko Oldenburg d7a10faf7c first commit
2023-11-11 09:53:16 +01:00

16 lines
370 B
YAML

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