Provide external helm values
[oom.git] / kubernetes / oneclick / createAll.bash
index af300f2..8a27510 100755 (executable)
@@ -2,12 +2,14 @@
 
 . $(dirname "$0")/setenv.bash
 
+
 usage() {
   cat <<EOF
 Usage: $0 [PARAMs]
 -u                  : Display usage
 -n [NAMESPACE]      : Kubernetes namespace (required)
--s false            : Exclude services (default: true)
+-v [VALUES]         : HELM values filepath (usefull when deploying one component at a time)
+-i [INSTANCE]       : ONAP deployment instance # (default: 1)
 -a [APP]            : Specify a specific ONAP component (default: all)
                       from the following choices:
                       sdc, aai ,mso, message-router, robot,
@@ -23,18 +25,26 @@ create_registry_key() {
   kubectl --namespace $1-$2 create secret docker-registry $3 --docker-server=$4 --docker-username=$5 --docker-password=$6 --docker-email=$7
 }
 
-create_service() {
-  kubectl --namespace $1-$2 create -f ../$2/all-services.yaml
+create_onap_helm() {
+  HELM_VALUES_ADDITION=""
+  if [[ ! -z $4 ]]; then
+     HELM_VALUES_ADDITION="--values=$4"  
+  fi
+  helm install ../$2/ --name $1-$2 --namespace $1 --set nsPrefix=$1 --set nodePortPrefix=$3 ${HELM_VALUES_ADDITION}
 }
 
+
 #MAINs
 NS=
+HELM_VALUES_FILEPATH=
 INCL_SVC=true
 APP=
+INSTANCE=1
+MAX_INSTANCE=5
 DU=$ONAP_DOCKER_USER
 DP=$ONAP_DOCKER_PASS
 
-while getopts ":n:u:s:a:du:dp:" PARAM; do
+while getopts ":n:u:s:i:a:du:dp:v:" PARAM; do
   case $PARAM in
     u)
       usage
@@ -43,8 +53,11 @@ while getopts ":n:u:s:a:du:dp:" PARAM; do
     n)
       NS=${OPTARG}
       ;;
-    s)
-      INCL_SVC=${OPTARG}
+    v)
+      HELM_VALUES_FILEPATH=${OPTARG}
+      ;;
+    i)
+      INSTANCE=${OPTARG}
       ;;
     a)
       APP=${OPTARG}
@@ -72,27 +85,38 @@ if [[ -z $NS ]]; then
 fi
 
 if [[ ! -z "$APP" ]]; then
-  ONAP_APPS=($APP)
+  HELM_APPS=($APP)
 fi
 
-printf "\n********** Creating up ONAP: ${ONAP_APPS[*]}\n"
 
-for i in ${ONAP_APPS[@]}; do
-  printf "\nCreating namespaces **********\n"
-  create_namespace $NS $i
+if [ "$INSTANCE" -gt "$MAX_INSTANCE" ];then
+  printf "\n********** You choose to create ${INSTANCE}th instance of ONAP \n"
+  printf "\n********** Due to port allocation only ${MAX_INSTANCE} instances of ONAP is allowed per kubernetes deployment\n"
+  exit 1
+fi
 
-  if [[ "$INCL_SVC" == true ]]; then
-    printf "\nCreating services **********\n"
-    create_service $NS $i
-  fi
+start=$((300+2*INSTANCE))
+end=$((start+1))
 
-  printf "\n"
-done
+printf "\n********** Creating instance ${INSTANCE} of ONAP with port range ${start}00 and ${end}99\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
-  /bin/bash $i.sh $NS $i 'create'
+
+printf "\n********** Creating ONAP: ${ONAP_APPS[*]}\n"
+
+
+printf "\n\n********** Creating deployments for ${HELM_APPS[*]} ********** \n"
+
+for i in ${HELM_APPS[@]}; do
+  printf "\nCreating namespace **********\n"
+  create_namespace $NS $i 
+
+  printf "\nCreating registry secret **********\n"
+  create_registry_key $NS $i ${NS}-docker-registry-key $ONAP_DOCKER_REGISTRY $DU $DP $ONAP_DOCKER_MAIL
+
+  printf "\nCreating deployments and services **********\n"
+  create_onap_helm $NS $i $start $HELM_VALUES_FILEPATH
+
+  printf "\n"
 done
 
-printf "**** Done ****"
+printf "\n**** Done ****\n"