aboutsummaryrefslogtreecommitdiffstats
path: root/docker/cnf/hooks/post_checkout
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2020-03-12 17:31:56 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2020-07-04 10:20:35 +0200
commitaa422313517b5a6d81fd544fa71853e378699256 (patch)
treefd3bca6753000c2a9aaaecbf9941fd0129f0448c /docker/cnf/hooks/post_checkout
parent3fa1ab4d924196985652154216a63252311c5c21 (diff)
Deploy Clearwater IMS using Kubernetes
The new testcase "k8s_vims" deploys and tests Clearwater IMS using Kubernetes. It follows the procedures proposed by clearwater-docker [1]. [1] https://github.com/Metaswitch/clearwater-docker Change-Id: I2fe3cd03a5dedfc61fbab294c53b4bc0b0fa70be Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit 080d2414682d5fecea8c01640e2e5971278fe19d) (cherry picked from commit d56ecab65904d9a190f378262ad9bff48358a40e)
Diffstat (limited to 'docker/cnf/hooks/post_checkout')
-rw-r--r--docker/cnf/hooks/post_checkout6
1 files changed, 6 insertions, 0 deletions
diff --git a/docker/cnf/hooks/post_checkout b/docker/cnf/hooks/post_checkout
new file mode 100644
index 00000000..919a325f
--- /dev/null
+++ b/docker/cnf/hooks/post_checkout
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+from="${DOCKER_REPO%/*}/functest-kubernetes-vnf:${DOCKER_TAG}"
+sed -i "s|^FROM.*$|FROM ${from}|" Dockerfile
+
+exit $?