1apiVersion: v12kind: Pod3metadata:4 name: "{{ include "maddy.fullname" . }}-test-connection"5 labels:6 {{- include "maddy.labels" . | nindent 4 }}7 annotations:8 "helm.sh/hook": test-success9spec:10 containers:11 - name: wget12 image: busybox13 command: ['wget']14 args: ['{{ include "maddy.fullname" . }}:{{ .Values.service.port }}']15 restartPolicy: Never