[vFW_CNF_CDS] Provide Helm Tests for CNF
[demo.git] / heat / vFW_CNF_CDS / templates / helm / vfw / templates / tests / ping.yaml
diff --git a/heat/vFW_CNF_CDS/templates/helm/vfw/templates/tests/ping.yaml b/heat/vFW_CNF_CDS/templates/helm/vfw/templates/tests/ping.yaml
new file mode 100644 (file)
index 0000000..37b4183
--- /dev/null
@@ -0,0 +1,55 @@
+---
+# Copyright © 2021 Samsung Electronics
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+{{- if eq .Values.Tests.enabled "yes" }}
+apiVersion: batch/v1
+kind: Job
+metadata:
+  name: "{{ .Values.vfw_name_0 }}-test"
+  labels:
+    vnf-name: {{ .Values.vnf_name }}
+    vf-module-name: {{ .Values.vfw_name_0 }}
+    release: {{ .Release.Name }}
+    chart: {{ .Chart.Name }}
+  annotations:
+    "helm.sh/hook": test-success
+spec:
+  completions: 1
+  template:
+    metadata:
+      annotations:
+        k8s.v1.cni.cncf.io/networks: "{{ .Values.net_attachment_definition }}"
+        k8s.plugin.opnfv.org/nfn-network: |
+            { "type": "ovn4nfv",
+              "interface": [
+                {
+                  "name": {{ .Values.int_private1_net_id | quote }},
+                  "interface": "eth1" ,
+                  "defaultGateway": "false"
+                }
+                {
+                  "name": {{ .Values.int_private2_net_id | quote }},
+                  "interface": "eth2" ,
+                  "defaultGateway": "false"
+                }
+              ]
+            }
+    spec:
+      restartPolicy: Never
+      containers:
+        - name: "ping-test-eth1"
+          image: busybox
+          command:
+            - /bin/sh
+            - -exc
+            - "ping -c {{ .Values.Tests.ping_count }} -I eth1 {{ .Values.vfw_int_private1_ip_0 }}"
+        - name: "ping-test-eth2"
+          image: busybox
+          command:
+            - /bin/sh
+            - -exc
+            - "ping -c {{ .Values.Tests.ping_count }} -I eth2 {{ .Values.vfw_int_private2_ip_0 }}"
+{{- end -}}