deployment-check.yaml 354 B

1234567891011121314151617
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: "{{ .Release.Name }}-deployment-test"
  5. annotations:
  6. "helm.sh/hook": test
  7. spec:
  8. containers:
  9. - name: {{ .Release.Name }}-deployment-test
  10. image: "busybox"
  11. command:
  12. - nc
  13. args:
  14. - "-vz"
  15. - "{{ include "ix-chart.fullname" . }}"
  16. - "80"
  17. restartPolicy: Never