blob: 82956b8e7ba740a47b0a34e5757f5ae5c2a132d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
#!/bin/bash
. $(dirname "$0")/setenv.bash
usage() {
cat <<EOF
Usage: $0 [PARAMs]
-u : Display usage
-n [NAMESPACE] : Kubernetes namespace (required)
-s false : Exclude services (default: true)
-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,
vid, sdnc, portal, policy, appc
EOF
}
create_namespace() {
kubectl create namespace $1-$2
}
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() {
sed -i -- 's/nodePort: [0-9]\{2\}[02468]\{1\}/nodePort: '"$3"'/g' ../$2/all-services.yaml
sed -i -- 's/nodePort: [0-9]\{2\}[13579]\{1\}/nodePort: '"$4"'/g' ../$2/all-services.yaml
kubectl --namespace $1-$2 create -f ../$2/all-services.yaml
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 $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
# note: this will create a '-template' file within the component's directory
# 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 $3 -type f -exec sed -i -- "s/onap-/$1-/g" {} \;
# replace the default '/dockerdata-nfs/onapdemo' volume mount paths
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
}
#MAINs
NS=
INCL_SVC=true
APP=
INSTANCE=1
MAX_INSTANCE=5
DU=$ONAP_DOCKER_USER
DP=$ONAP_DOCKER_PASS
while getopts ":n:u:s:i:a:du:dp:" PARAM; do
case $PARAM in
u)
usage
exit 1
;;
n)
NS=${OPTARG}
;;
s)
INCL_SVC=${OPTARG}
;;
i)
INSTANCE=${OPTARG}
;;
a)
APP=${OPTARG}
if [[ -z $APP ]]; then
usage
exit 1
fi
;;
du)
DU=${OPTARG}
;;
dp)
DP=${OPTARG}
;;
?)
usage
exit
;;
esac
done
if [[ -z $NS ]]; then
usage
exit 1
fi
if [[ ! -z "$APP" ]]; then
ONAP_APPS=($APP)
fi
if [[ "$INCL_SVC" == true ]]; then
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
start=$((300+2*INSTANCE))
end=$((start+1))
printf "\n********** Creating instance ${INSTANCE} of ONAP with port range ${start}00 and ${end}99\n"
fi
printf "\n********** Creating ONAP: ${ONAP_APPS[*]}\n"
for i in ${ONAP_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
if [[ "$INCL_SVC" == true ]]; then
printf "\nCreating service **********\n"
create_service $NS $i $start $end
fi
printf "\n"
done
printf "\n\n********** Creating deployments for ${ONAP_APPS[*]} ********** \n"
for i in ${ONAP_APPS[@]}; do
_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"
|