From 799cc5979d753808addc6a8c2a467696052d0fd7 Mon Sep 17 00:00:00 2001 From: maopengzhang Date: Fri, 1 Sep 2017 09:37:48 +0800 Subject: Add VFC containers to ONAP K8S Add VFC containers to ONAP K8S MK:- fixed issues related to port names longer than 15chars - scoped pods to the onap-vfc namespace. All deployments still fail due to missing docker images in nexus3 Yan:- fixed docker images in nexus3 MK (patchset 7) - adding image pull secrets or they all fail - address Alexis comments by removing trailing spaces & removing activii (with the comments left in it crashes out) MK: (patchset 8) - removing trailing whitespaces Change-Id: Iab9f641aaa580511c0e4a073a71da723aaf07315 Issue-ID: OOM-19 Signed-off-by: maopengzhang Signed-off-by: Mandeep Khinda --- kubernetes/oneclick/vfc.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 kubernetes/oneclick/vfc.sh (limited to 'kubernetes/oneclick') diff --git a/kubernetes/oneclick/vfc.sh b/kubernetes/oneclick/vfc.sh new file mode 100755 index 0000000000..0199a2a31b --- /dev/null +++ b/kubernetes/oneclick/vfc.sh @@ -0,0 +1,17 @@ +#!/bin/bash +KUBECTL_CMD="kubectl --namespace $1-$2 $3 -f ../$2" + +printf "vfc....\n" +$KUBECTL_CMD/vfc-catalog-deployment.yaml +$KUBECTL_CMD/vfc-emsdriver-deployment.yaml +$KUBECTL_CMD/vfc-gvnfmdriver-deployment.yaml +$KUBECTL_CMD/vfc-hwvnfmdriver-deployment.yaml +$KUBECTL_CMD/vfc-jujudriver-deployment.yaml +$KUBECTL_CMD/vfc-nslcm-deployment.yaml +$KUBECTL_CMD/vfc-resmgr-deployment.yaml +$KUBECTL_CMD/vfc-vnflcm-deployment.yaml +$KUBECTL_CMD/vfc-vnfmgr-deployment.yaml +$KUBECTL_CMD/vfc-vnfres-deployment.yaml +$KUBECTL_CMD/vfc-workflow-deployment.yaml +$KUBECTL_CMD/vfc-ztesdncdriver-deployment.yaml +$KUBECTL_CMD/vfc-ztevmanagerdriver-deployment.yaml -- cgit 1.2.3-korg