Add deployment test for ix-chart

This commit is contained in:
Waqar Ahmed 2020-11-26 22:00:36 +05:00
parent b75422d73d
commit 66653b71fe
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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"
- "{{ .Release.Name }}-ix-chart"
- "80"
restartPolicy: Never