aboutsummaryrefslogtreecommitdiffstats
path: root/tools/moon_kubernetes/templates/moon_functest.yaml
diff options
context:
space:
mode:
authorfrancois.cellier <francois.cellier@orange.com>2018-02-13 13:06:51 +0100
committerfrancois.cellier <francois.cellier@orange.com>2018-02-13 17:01:47 +0100
commitb38ecccb8ab9cd1e631f89c92f6b88e420b2a1b0 (patch)
tree8403f71cef84a5761f533bb6fc7aa08daa234f16 /tools/moon_kubernetes/templates/moon_functest.yaml
parent4841ea360bb6feec4d2c644040e12a2657769634 (diff)
Add the moon_pythonfunctest container to perform functionnal tests
Change-Id: I2be863862ce7df408f759664b10af45416b3d712
Diffstat (limited to 'tools/moon_kubernetes/templates/moon_functest.yaml')
-rw-r--r--tools/moon_kubernetes/templates/moon_functest.yaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/moon_kubernetes/templates/moon_functest.yaml b/tools/moon_kubernetes/templates/moon_functest.yaml
new file mode 100644
index 00000000..d70ebb96
--- /dev/null
+++ b/tools/moon_kubernetes/templates/moon_functest.yaml
@@ -0,0 +1,27 @@
+apiVersion: batch/v1
+kind: Job
+metadata:
+ name: functest
+ namespace: moon
+spec:
+ template:
+ metadata:
+ name: functest
+ spec:
+ containers:
+ - name: functest
+ image: wukongsun/moon_python_func_test:latest
+ volumeMounts:
+ - name: config-volume
+ mountPath: /etc/moon
+ - name: tests-volume
+ mountPath: /data
+ volumes:
+ - name: config-volume
+ configMap:
+ name: moon-config
+ - name: tests-volume
+ hostPath:
+ path: "{{PATH}}"
+ restartPolicy: Never
+ #backoffLimit: 4