diff options
author | Mandeep Khinda <Mandeep.Khinda@amdocs.com> | 2017-09-26 17:07:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-26 17:07:16 +0000 |
commit | 31cca0e7a632addb6e1d5833e9d514ad6396abb2 (patch) | |
tree | 8f92fec137127f8eb34b179f623274c4b0f8516c /kubernetes/oneclick | |
parent | ea507b5bd5ac4bb84d839769908f5ebe3e36a4e4 (diff) | |
parent | 799cc5979d753808addc6a8c2a467696052d0fd7 (diff) |
Merge "Add VFC containers to ONAP K8S"
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 |