summaryrefslogtreecommitdiffstats
path: root/kubernetes/oneclick/createAll.bash
diff options
context:
space:
mode:
authorkerenj <keren.joseph@amdocs.com>2017-08-22 15:27:04 +0000
committerBorislav Glozman <Borislav.Glozman@amdocs.com>2017-08-22 16:28:10 +0000
commit74d723a8696a22dcbe8c0eee131540b45822a1af (patch)
tree9b490a4a39bb8bb1832fc1327234a2166da1e8a4 /kubernetes/oneclick/createAll.bash
parente94258e3be0da3a15680de53b1817490c4173759 (diff)
MSO K8S-Helm Parameterization
changed MSO k8s deployment to support helm parameterization Issue-ID: OOM-52 Change-Id: Ifb192ee2d417aae6b0bdd05d662229e3542e7944 Signed-off-by: kerenj <keren.joseph@amdocs.com>
Diffstat (limited to 'kubernetes/oneclick/createAll.bash')
-rwxr-xr-xkubernetes/oneclick/createAll.bash40
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"
+