1234567891011121314151617 |
- apiVersion: v1
- kind: Pod
- metadata:
- name: "{{ .Release.Name }}-deployment-test"
- annotations:
- "helm.sh/hook": test
- spec:
- containers:
- - name: {{ .Release.Name }}-deployment-test
- image: "busybox"
- command:
- - nc
- args:
- - "-vz"
- - "{{ include "ix-chart.fullname" . }}"
- - "80"
- restartPolicy: Never
|