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