first commit

This commit is contained in:
2023-11-11 09:53:16 +01:00
commit d7a10faf7c
13 changed files with 651 additions and 0 deletions

View File

@ -0,0 +1,15 @@
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