summaryrefslogtreecommitdiffstats
path: root/kubernetes/oneclick
diff options
context:
space:
mode:
authorMike Elliott <mike.elliott@amdocs.com>2017-08-14 16:21:40 -0400
committerMike Elliott <mike.elliott@amdocs.com>2017-08-15 08:09:33 -0400
commitd17accd32f4f7851dbe7b023f1997aa4e17938e8 (patch)
treea0add5147ff2e3a2da78c8117d237bcdb656758d /kubernetes/oneclick
parent8fc4b23407fa42cde4c592491824e48c564245a1 (diff)
[OOM-117] Multiple ONAP instances same K8s cluster
Change-Id: Ie670dd37da819b33e32885d3be20cc8739fc2524 Signed-off-by: Mike Elliott <mike.elliott@amdocs.com>
Diffstat (limited to 'kubernetes/oneclick')
-rwxr-xr-xkubernetes/oneclick/createAll.bash35
1 files changed, 30 insertions, 5 deletions
diff --git a/kubernetes/oneclick/createAll.bash b/kubernetes/oneclick/createAll.bash
index bc211eeb47..5e5f2dc76e 100755
--- a/kubernetes/oneclick/createAll.bash
+++ b/kubernetes/oneclick/createAll.bash
@@ -31,6 +31,28 @@ create_service() {
mv ../$2/all-services.yaml-- ../$2/all-services.yaml
}
+configure_app() {
+ # if previous configuration exists put back original template file
+ for file in ../$2/*.yaml; do
+ if [ -e "$file-template" ]; then
+ mv "$file-template" "${file%}"
+ fi
+ done
+
+ # replace the default 'onap' namespace qualification of K8s hostnames within
+ # the config files
+ # note: this will create a '-template' file within the component's directory
+ # this is not ideal and should be addressed (along with the replacement
+ # of sed commands for configuration) by the future configuration
+ # user stories (ie. OOM-51 to OOM-53)
+ find ../$2 -type f -exec sed -i -template "s/onap-/$1-/g" {} \;
+
+ # replace the default '/dockerdata-nfs/onapdemo' volume mount paths
+ find ../$2 -iname "*.yaml" -type f -exec sed -i -e 's/dockerdata-nfs\/[a-zA-Z0-9\\-]*\//dockerdata-nfs\/'"$1"'\//g' {} \;
+ rm -f ../$2/*.yaml-e
+}
+
+
#MAINs
NS=
INCL_SVC=true
@@ -98,23 +120,26 @@ if [[ "$INCL_SVC" == true ]]; then
fi
-printf "\n********** Creating up ONAP: ${ONAP_APPS[*]}\n"
+printf "\n********** Creating ONAP: ${ONAP_APPS[*]}\n"
for i in ${ONAP_APPS[@]}; do
- printf "\nCreating namespaces **********\n"
+ printf "\nCreating namespace **********\n"
create_namespace $NS $i
+ printf "\nCreating registry secret **********\n"
+ create_registry_key $NS $i $ONAP_DOCKER_REGISTRY_KEY $ONAP_DOCKER_REGISTRY $DU $DP $ONAP_DOCKER_MAIL
+
if [[ "$INCL_SVC" == true ]]; then
- printf "\nCreating services **********\n"
+ printf "\nCreating service **********\n"
create_service $NS $i $start $end
fi
printf "\n"
done
-printf "\n\n********** Creating deployments for ${ONAP_APPS[*]} ********** \n"
+printf "\n\n********** Creating deployments for ${ONAP_APPS[*]} ********** \n"
for i in ${ONAP_APPS[@]}; do
- create_registry_key $NS $i $ONAP_DOCKER_REGISTRY_KEY $ONAP_DOCKER_REGISTRY $DU $DP $ONAP_DOCKER_MAIL
+ configure_app $NS $i
/bin/bash $i.sh $NS $i 'create'
done