deploy components from different path
[oom.git] / kubernetes / oneclick / createAll.bash
1 #!/bin/bash
2
3 . $(dirname "$0")/setenv.bash
4
5
6 usage() {
7   cat <<EOF
8 Usage: $0 [PARAMs]
9 -u                  : Display usage
10 -n [NAMESPACE]      : Kubernetes namespace (required)
11 -v [VALUES]         : HELM values filepath (usefull when deploying one component at a time)
12 -l [LOCATION]       : Location of oom project
13 -i [INSTANCE]       : ONAP deployment instance # (default: 1)
14 -a [APP]            : Specify a specific ONAP component (default: all)
15                       from the following choices:
16                       sdc, aai ,mso, message-router, robot,
17                       vid, sdnc, portal, policy, appc
18 EOF
19 }
20
21 create_namespace() {
22   kubectl create namespace $1-$2
23 }
24
25 create_registry_key() {
26   kubectl --namespace $1-$2 create secret docker-registry $3 --docker-server=$4 --docker-username=$5 --docker-password=$6 --docker-email=$7
27 }
28
29 create_onap_helm() {
30   HELM_VALUES_ADDITION=""
31   if [[ ! -z $HELM_VALUES_FILEPATH ]]; then
32     HELM_VALUES_ADDITION="--values=$HELM_VALUES_FILEPATH"
33   fi
34   helm install $LOCATION/$2/ --name $1-$2 --namespace $1 --set nsPrefix=$1,nodePortPrefix=$3 ${HELM_VALUES_ADDITION}
35 }
36
37
38 #MAINs
39 NS=
40 HELM_VALUES_FILEPATH=""
41 LOCATION="../"
42 INCL_SVC=true
43 APP=
44 INSTANCE=1
45 MAX_INSTANCE=5
46 DU=$ONAP_DOCKER_USER
47 DP=$ONAP_DOCKER_PASS
48
49 while getopts ":n:u:s:i:a:du:dp:l:v:" PARAM; do
50   case $PARAM in
51     u)
52       usage
53       exit 1
54       ;;
55     n)
56       NS=${OPTARG}
57       ;;
58     v)
59       HELM_VALUES_FILEPATH=${OPTARG}
60       ;;
61     i)
62       INSTANCE=${OPTARG}
63       ;;
64     l)
65       LOCATION=${OPTARG}
66       ;;
67     a)
68       APP=${OPTARG}
69       if [[ -z $APP ]]; then
70         usage
71         exit 1
72       fi
73       ;;
74     du)
75       DU=${OPTARG}
76       ;;
77     dp)
78       DP=${OPTARG}
79       ;;
80     ?)
81       usage
82       exit
83       ;;
84   esac
85 done
86
87 if [[ -z $NS ]]; then
88   usage
89   exit 1
90 fi
91
92 if [[ ! -z "$APP" ]]; then
93   HELM_APPS=($APP)
94 fi
95
96
97 if [ "$INSTANCE" -gt "$MAX_INSTANCE" ];then
98   printf "\n********** You choose to create ${INSTANCE}th instance of ONAP \n"
99   printf "\n********** Due to port allocation only ${MAX_INSTANCE} instances of ONAP is allowed per kubernetes deployment\n"
100   exit 1
101 fi
102
103 start=$((300+2*INSTANCE))
104 end=$((start+1))
105
106 printf "\n********** Creating instance ${INSTANCE} of ONAP with port range ${start}00 and ${end}99\n"
107
108
109 printf "\n********** Creating ONAP: ${ONAP_APPS[*]}\n"
110
111
112 printf "\n\n********** Creating deployments for ${HELM_APPS[*]} ********** \n"
113
114 for i in ${HELM_APPS[@]}; do
115   printf "\nCreating namespace **********\n"
116   create_namespace $NS $i
117
118   printf "\nCreating registry secret **********\n"
119   create_registry_key $NS $i ${NS}-docker-registry-key $ONAP_DOCKER_REGISTRY $DU $DP $ONAP_DOCKER_MAIL
120
121   printf "\nCreating deployments and services **********\n"
122   create_onap_helm $NS $i $start
123
124   printf "\n"
125 done
126
127 printf "\n**** Done ****\n"