Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Borislav Glozman | 5197e2e | 2017-07-24 10:45:28 +0300 | [diff] [blame] | 3 | . $(dirname "$0")/setenv.bash |
| 4 | |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 5 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 6 | usage() { |
| 7 | cat <<EOF |
| 8 | Usage: $0 [PARAMs] |
| 9 | -u : Display usage |
| 10 | -n [NAMESPACE] : Kubernetes namespace (required) |
Munir Ahmad | 87b0109 | 2017-08-09 14:51:11 -0400 | [diff] [blame] | 11 | -i [INSTANCE] : ONAP deployment instance # (default: 1) |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 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 | |
Borislav Glozman | 5197e2e | 2017-07-24 10:45:28 +0300 | [diff] [blame] | 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 | |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 27 | create_onap_helm() { |
Mandeep Khinda | 0e8f889 | 2017-08-25 03:31:17 +0000 | [diff] [blame] | 28 | helm install ../$2/ --name $2 --namespace $1 --set nsPrefix=$1 |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 29 | } |
| 30 | |
Mike Elliott | d17accd | 2017-08-14 16:21:40 -0400 | [diff] [blame] | 31 | configure_app() { |
| 32 | # if previous configuration exists put back original template file |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 33 | for file in $3/*.yaml; do |
Mike Elliott | d17accd | 2017-08-14 16:21:40 -0400 | [diff] [blame] | 34 | if [ -e "$file-template" ]; then |
| 35 | mv "$file-template" "${file%}" |
| 36 | fi |
| 37 | done |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 38 | |
| 39 | if [ -e "$2/Chart.yaml" ]; then |
Munir Ahmad | 0803ca6 | 2017-08-23 16:55:59 -0400 | [diff] [blame] | 40 | sed -i-- 's/nodePort: [0-9]\{2\}[02468]\{1\}/nodePort: '"$4"'/g' $3/all-services.yaml |
| 41 | sed -i-- 's/nodePort: [0-9]\{2\}[13579]\{1\}/nodePort: '"$5"'/g' $3/all-services.yaml |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 42 | fi |
Mike Elliott | d17accd | 2017-08-14 16:21:40 -0400 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 46 | #MAINs |
| 47 | NS= |
| 48 | INCL_SVC=true |
| 49 | APP= |
Munir Ahmad | 87b0109 | 2017-08-09 14:51:11 -0400 | [diff] [blame] | 50 | INSTANCE=1 |
| 51 | MAX_INSTANCE=5 |
Borislav Glozman | 5197e2e | 2017-07-24 10:45:28 +0300 | [diff] [blame] | 52 | DU=$ONAP_DOCKER_USER |
| 53 | DP=$ONAP_DOCKER_PASS |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 54 | |
Munir Ahmad | 87b0109 | 2017-08-09 14:51:11 -0400 | [diff] [blame] | 55 | while getopts ":n:u:s:i:a:du:dp:" PARAM; do |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 56 | case $PARAM in |
| 57 | u) |
| 58 | usage |
| 59 | exit 1 |
| 60 | ;; |
| 61 | n) |
| 62 | NS=${OPTARG} |
| 63 | ;; |
Munir Ahmad | 87b0109 | 2017-08-09 14:51:11 -0400 | [diff] [blame] | 64 | i) |
| 65 | INSTANCE=${OPTARG} |
| 66 | ;; |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 67 | a) |
| 68 | APP=${OPTARG} |
| 69 | if [[ -z $APP ]]; then |
| 70 | usage |
| 71 | exit 1 |
| 72 | fi |
| 73 | ;; |
Borislav Glozman | 5197e2e | 2017-07-24 10:45:28 +0300 | [diff] [blame] | 74 | du) |
| 75 | DU=${OPTARG} |
| 76 | ;; |
| 77 | dp) |
| 78 | DP=${OPTARG} |
| 79 | ;; |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 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 |
kerenj | 8010284 | 2017-08-24 13:54:21 +0000 | [diff] [blame] | 93 | HELM_APPS=($APP) |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 94 | fi |
| 95 | |
Munir Ahmad | 87b0109 | 2017-08-09 14:51:11 -0400 | [diff] [blame] | 96 | |
kerenj | 8010284 | 2017-08-24 13:54:21 +0000 | [diff] [blame] | 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 |
Munir Ahmad | 87b0109 | 2017-08-09 14:51:11 -0400 | [diff] [blame] | 101 | fi |
| 102 | |
kerenj | 8010284 | 2017-08-24 13:54:21 +0000 | [diff] [blame] | 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 | |
Mike Elliott | d17accd | 2017-08-14 16:21:40 -0400 | [diff] [blame] | 109 | printf "\n********** Creating ONAP: ${ONAP_APPS[*]}\n" |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 110 | |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 111 | |
kerenj | 8010284 | 2017-08-24 13:54:21 +0000 | [diff] [blame] | 112 | printf "\n\n********** Creating deployments for ${HELM_APPS[*]} ********** \n" |
Mandeep Khinda | d6ea987 | 2017-06-24 11:49:37 -0400 | [diff] [blame] | 113 | |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 114 | for i in ${HELM_APPS[@]}; do |
| 115 | printf "\nCreating namespace **********\n" |
| 116 | create_namespace $NS $i |
| 117 | |
| 118 | printf "\nCreating registry secret **********\n" |
Mandeep Khinda | 0e8f889 | 2017-08-25 03:31:17 +0000 | [diff] [blame] | 119 | create_registry_key $NS $i ${NS}-docker-registry-key $ONAP_DOCKER_REGISTRY $DU $DP $ONAP_DOCKER_MAIL |
kerenj | 74d723a | 2017-08-22 15:27:04 +0000 | [diff] [blame] | 120 | |
| 121 | printf "\nCreating deployments and services **********\n" |
| 122 | _FILES_PATH=$(echo ../$i/templates) |
| 123 | configure_app $NS $i $_FILES_PATH $start $end |
| 124 | create_onap_helm $NS $i |
| 125 | |
| 126 | printf "\n" |
| 127 | done |
| 128 | |
Munir Ahmad | 87b0109 | 2017-08-09 14:51:11 -0400 | [diff] [blame] | 129 | printf "\n**** Done ****\n" |