diff options
Diffstat (limited to 'kubernetes/oneclick/createAll.bash')
-rwxr-xr-x | kubernetes/oneclick/createAll.bash | 40 |
1 files changed, 35 insertions, 5 deletions
diff --git a/kubernetes/oneclick/createAll.bash b/kubernetes/oneclick/createAll.bash index 5e5f2dc76e..82956b8e7b 100755 --- a/kubernetes/oneclick/createAll.bash +++ b/kubernetes/oneclick/createAll.bash @@ -2,6 +2,7 @@ . $(dirname "$0")/setenv.bash + usage() { cat <<EOF Usage: $0 [PARAMs] @@ -31,13 +32,25 @@ create_service() { mv ../$2/all-services.yaml-- ../$2/all-services.yaml } + +create_onap_helm() { + helm install ../$2/ --name $2 +} + configure_app() { # if previous configuration exists put back original template file - for file in ../$2/*.yaml; do + for file in $3/*.yaml; do if [ -e "$file-template" ]; then mv "$file-template" "${file%}" fi done + + if [ -e "$2/Chart.yaml" ]; then + sed -i -- 's/nodePort: [0-9]\{2\}[02468]\{1\}/nodePort: '"$4"'/g' $3/all-services.yaml + sed -i -- 's/nodePort: [0-9]\{2\}[13579]\{1\}/nodePort: '"$5"'/g' $3/all-services.yaml + sed -i "s/onap-/$1-/g" ../$2/values.yaml + fi + # replace the default 'onap' namespace qualification of K8s hostnames within # the config files @@ -45,11 +58,11 @@ configure_app() { # 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" {} \; + find $3 -type f -exec sed -i -- "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 + find $3 -iname "*.yaml" -type f -exec sed -i -e 's/dockerdata-nfs\/[a-zA-Z0-9\\-]*\//dockerdata-nfs\/'"$1"'\//g' {} \; + rm -f $3/*.yaml-e } @@ -139,8 +152,25 @@ done printf "\n\n********** Creating deployments for ${ONAP_APPS[*]} ********** \n" for i in ${ONAP_APPS[@]}; do - configure_app $NS $i + _FILES_PATH=$(echo ../$i) + configure_app $NS $i $_FILES_PATH $start $end /bin/bash $i.sh $NS $i 'create' done +for i in ${HELM_APPS[@]}; do + 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 + + printf "\nCreating deployments and services **********\n" + _FILES_PATH=$(echo ../$i/templates) + configure_app $NS $i $_FILES_PATH $start $end + create_onap_helm $NS $i + + printf "\n" +done + printf "\n**** Done ****\n" + |