diff options
author | maopengzhang <zhang.maopeng1@zte.com.cn> | 2017-09-01 09:37:48 +0800 |
---|---|---|
committer | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2017-09-26 16:54:39 +0000 |
commit | 799cc5979d753808addc6a8c2a467696052d0fd7 (patch) | |
tree | 013f64a238a177e24ba6effe5483a5eacc41a3eb /kubernetes/oneclick | |
parent | 91c77102cdc57ea5936789cacef6ad3e276b6054 (diff) |
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 <zhang.maopeng1@zte.com.cn>
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/oneclick')
-rwxr-xr-x | kubernetes/oneclick/vfc.sh | 17 |
1 files changed, 17 insertions, 0 deletions
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 |