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