Merge "Modify chart name to kube2msb-registrator"
[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 -i [INSTANCE]       : ONAP deployment instance # (default: 1)
12 -a [APP]            : Specify a specific ONAP component (default: all)
13                       from the following choices:
14                       sdc, aai ,mso, message-router, robot,
15                       vid, sdnc, portal, policy, appc
16 EOF
17 }
18
19 create_namespace() {
20   kubectl create namespace $1-$2
21 }
22
23 create_registry_key() {
24   kubectl --namespace $1-$2 create secret docker-registry $3 --docker-server=$4 --docker-username=$5 --docker-password=$6 --docker-email=$7
25 }
26
27 create_onap_helm() {
28   helm install ../$2/ --name $1-$2 --namespace $1 --set nsPrefix=$1,nodePortPrefix=$3
29 }
30
31
32 #MAINs
33 NS=
34 INCL_SVC=true
35 APP=
36 INSTANCE=1
37 MAX_INSTANCE=5
38 DU=$ONAP_DOCKER_USER
39 DP=$ONAP_DOCKER_PASS
40 _FILES_PATH=$(echo ../$i/templates)
41
42 while getopts ":n:u:s:i:a:du:dp:" PARAM; do
43   case $PARAM in
44     u)
45       usage
46       exit 1
47       ;;
48     n)
49       NS=${OPTARG}
50       ;;
51     i)
52       INSTANCE=${OPTARG}
53       ;;
54     a)
55       APP=${OPTARG}
56       if [[ -z $APP ]]; then
57         usage
58         exit 1
59       fi
60       ;;
61     du)
62       DU=${OPTARG}
63       ;;
64     dp)
65       DP=${OPTARG}
66       ;;
67     ?)
68       usage
69       exit
70       ;;
71   esac
72 done
73
74 if [[ -z $NS ]]; then
75   usage
76   exit 1
77 fi
78
79 if [[ ! -z "$APP" ]]; then
80   HELM_APPS=($APP)
81 fi
82
83
84 if [ "$INSTANCE" -gt "$MAX_INSTANCE" ];then
85   printf "\n********** You choose to create ${INSTANCE}th instance of ONAP \n"
86   printf "\n********** Due to port allocation only ${MAX_INSTANCE} instances of ONAP is allowed per kubernetes deployment\n"
87   exit 1
88 fi
89
90 start=$((300+2*INSTANCE))
91 end=$((start+1))
92
93 printf "\n********** Creating instance ${INSTANCE} of ONAP with port range ${start}00 and ${end}99\n"
94
95
96 printf "\n********** Creating ONAP: ${ONAP_APPS[*]}\n"
97
98
99 printf "\n\n********** Creating deployments for ${HELM_APPS[*]} ********** \n"
100
101 for i in ${HELM_APPS[@]}; do
102   printf "\nCreating namespace **********\n"
103   create_namespace $NS $i 
104
105   printf "\nCreating registry secret **********\n"
106   create_registry_key $NS $i ${NS}-docker-registry-key $ONAP_DOCKER_REGISTRY $DU $DP $ONAP_DOCKER_MAIL
107
108   printf "\nCreating deployments and services **********\n"
109   create_onap_helm $NS $i $start
110
111   printf "\n"
112 done
113
114 printf "\n**** Done ****\n"