소스 검색

Add deployment test for ix-chart

Waqar Ahmed 4 년 전
부모
커밋
66653b71fe
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      test/ix-chart/2010.0.2/templates/tests/deployment-check.yaml

+ 17 - 0
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