diff --git a/test/ix-chart/2010.0.2/templates/tests/deployment-check.yaml b/test/ix-chart/2010.0.2/templates/tests/deployment-check.yaml new file mode 100644 index 00000000000..240a5f94215 --- /dev/null +++ b/test/ix-chart/2010.0.2/templates/tests/deployment-check.yaml @@ -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