blob: 75a7259ad08c79c944311392145bbc67adb51013 [file] [log] [blame]
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +01001#! /bin/bash
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
David Garcia42375212020-04-27 19:07:49 +020015
16# set -eux
17
David Garciaa1376012020-10-19 15:42:42 +020018JUJU_AGENT_VERSION=2.8.6
David Garcia42375212020-04-27 19:07:49 +020019K8S_CLOUD_NAME="k8s-cloud"
beierlm3749e312020-07-02 14:21:09 -040020KUBECTL="microk8s.kubectl"
beierlm481ae7d2020-12-14 09:59:19 -050021MICROK8S_VERSION=1.19
David Garcia69388c22020-05-07 12:14:19 +020022IMAGES_OVERLAY_FILE=~/.osm/images-overlay.yaml
beierlmf2782c52020-11-05 17:04:05 -050023PATH=/snap/bin:${PATH}
24
David Garciaef349d92020-12-10 21:16:12 +010025MODEL_NAME=osm
26
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +010027function check_arguments(){
28 while [ $# -gt 0 ] ; do
David Garcia42375212020-04-27 19:07:49 +020029 case $1 in
30 --bundle) BUNDLE="$2" ;;
Dominik Fleischmann7a97a4c2020-06-04 10:52:05 +020031 --k8s) KUBECFG="$2" ;;
32 --vca) CONTROLLER="$2" ;;
33 --lxd) LXD_CLOUD="$2" ;;
34 --lxd-cred) LXD_CREDENTIALS="$2" ;;
David Garcia69388c22020-05-07 12:14:19 +020035 --microstack) MICROSTACK=y ;;
David Garciacef05e92020-08-20 12:08:31 +020036 --ha) BUNDLE="cs:osm-ha" ;;
David Garcia69388c22020-05-07 12:14:19 +020037 --tag) TAG="$2" ;;
beierlmf2782c52020-11-05 17:04:05 -050038 --registry) REGISTRY_INFO="$2" ;;
David Garcia42375212020-04-27 19:07:49 +020039 esac
40 shift
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +010041 done
42
David Garcia42375212020-04-27 19:07:49 +020043 # echo $BUNDLE $KUBECONFIG $LXDENDPOINT
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +010044}
beierlma4a37f72020-06-26 12:55:01 -040045
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +010046function install_snaps(){
beierlma4a37f72020-06-26 12:55:01 -040047 if [ ! -v KUBECFG ]; then
beierlm481ae7d2020-12-14 09:59:19 -050048 sudo snap install microk8s --classic --channel=${MICROK8S_VERSION}/stable
beierlma4a37f72020-06-26 12:55:01 -040049 sudo usermod -a -G microk8s `whoami`
50 mkdir -p ~/.kube
51 sudo chown -f -R `whoami` ~/.kube
52 KUBEGRP="microk8s"
beierlmf2782c52020-11-05 17:04:05 -050053 sg ${KUBEGRP} -c "microk8s status --wait-ready"
beierlmdf6de3d2020-12-16 08:46:40 -050054 KUBECONFIG=~/.osm/microk8s-config.yaml
55 sg ${KUBEGRP} -c "microk8s config" > ${KUBECONFIG}
beierlma4a37f72020-06-26 12:55:01 -040056 else
57 KUBECTL="kubectl"
58 sudo snap install kubectl --classic
59 export KUBECONFIG=${KUBECFG}
60 KUBEGRP=$(id -g -n)
61 fi
62 sudo snap install juju --classic --channel=2.8/stable
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +010063}
64
65function bootstrap_k8s_lxd(){
David Garcia42375212020-04-27 19:07:49 +020066 [ -v CONTROLLER ] && ADD_K8S_OPTS="--controller ${CONTROLLER}" && CONTROLLER_NAME=$CONTROLLER
beierlma4a37f72020-06-26 12:55:01 -040067 [ ! -v CONTROLLER ] && ADD_K8S_OPTS="--client" && BOOTSTRAP_NEEDED="yes" && CONTROLLER_NAME="osm-vca"
68
69 if [ -v BOOTSTRAP_NEEDED ]; then
70 CONTROLLER_PRESENT=$(juju controllers 2>/dev/null| grep ${CONTROLLER_NAME} | wc -l)
71 if [ $CONTROLLER_PRESENT -ge 1 ]; then
72 cat << EOF
73Threre is already a VCA present with the installer reserved name of "${CONTROLLER_NAME}".
74You may either explicitly use this VCA with the "--vca ${CONTROLLER_NAME}" option, or remove it
75using this command:
76
77 juju destroy-controller --release-storage --destroy-all-models -y ${CONTROLLER_NAME}
78
79Please retry the installation once this conflict has been resolved.
80EOF
81 exit 1
82 fi
beierlm9afb0ef2020-10-16 12:53:51 -040083 else
84 CONTROLLER_PRESENT=$(juju controllers 2>/dev/null| grep ${CONTROLLER_NAME} | wc -l)
85 if [ $CONTROLLER_PRESENT -le 0 ]; then
86 cat << EOF
87Threre is no VCA present with the name "${CONTROLLER_NAME}". Please specify a VCA
88that exists, or remove the --vca ${CONTROLLER_NAME} option.
89
90Please retry the installation with one of the solutions applied.
91EOF
92 exit 1
93 fi
beierlma4a37f72020-06-26 12:55:01 -040094 fi
David Garcia42375212020-04-27 19:07:49 +020095
96 if [ -v KUBECFG ]; then
97 cat $KUBECFG | juju add-k8s $K8S_CLOUD_NAME $ADD_K8S_OPTS
beierlm2634cd32020-09-15 16:00:34 -040098 [ -v BOOTSTRAP_NEEDED ] && juju bootstrap $K8S_CLOUD_NAME $CONTROLLER_NAME \
99 --config controller-service-type=loadbalancer \
David Garciaa1376012020-10-19 15:42:42 +0200100 --agent-version=$JUJU_AGENT_VERSION
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100101 else
beierlma4a37f72020-06-26 12:55:01 -0400102 sg ${KUBEGRP} -c "echo ${DEFAULT_IP}-${DEFAULT_IP} | microk8s.enable metallb"
beierlm9afb0ef2020-10-16 12:53:51 -0400103 sg ${KUBEGRP} -c "microk8s.enable ingress"
beierlma4a37f72020-06-26 12:55:01 -0400104 sg ${KUBEGRP} -c "microk8s.enable storage dns"
105 TIME_TO_WAIT=30
106 start_time="$(date -u +%s)"
Dominik Fleischmannc57296f2020-06-09 11:45:08 +0200107 while true
108 do
beierlma4a37f72020-06-26 12:55:01 -0400109 now="$(date -u +%s)"
110 if [[ $(( now - start_time )) -gt $TIME_TO_WAIT ]];then
111 echo "Microk8s storage failed to enable"
112 sg ${KUBEGRP} -c "microk8s.status"
113 exit 1
114 fi
115 storage_status=`sg ${KUBEGRP} -c "microk8s.status -a storage"`
116 if [[ $storage_status == "enabled" ]]; then
Dominik Fleischmannc57296f2020-06-09 11:45:08 +0200117 break
118 fi
119 sleep 1
120 done
David Garcia42375212020-04-27 19:07:49 +0200121
beierlma4a37f72020-06-26 12:55:01 -0400122 [ ! -v BOOTSTRAP_NEEDED ] && sg ${KUBEGRP} -c "microk8s.config" | juju add-k8s $K8S_CLOUD_NAME $ADD_K8S_OPTS
beierlm2634cd32020-09-15 16:00:34 -0400123 [ -v BOOTSTRAP_NEEDED ] && sg ${KUBEGRP} -c \
David Garciaa1376012020-10-19 15:42:42 +0200124 "juju bootstrap microk8s $CONTROLLER_NAME --config controller-service-type=loadbalancer --agent-version=$JUJU_AGENT_VERSION" \
beierlm2634cd32020-09-15 16:00:34 -0400125 && K8S_CLOUD_NAME=microk8s
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100126 fi
127
David Garcia42375212020-04-27 19:07:49 +0200128 if [ -v LXD_CLOUD ]; then
129 if [ ! -v LXD_CREDENTIALS ]; then
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100130 echo "The installer needs the LXD server certificate if the LXD is external"
131 exit 1
132 fi
133 else
134 LXDENDPOINT=$DEFAULT_IP
David Garcia42375212020-04-27 19:07:49 +0200135 LXD_CLOUD=~/.osm/lxd-cloud.yaml
136 LXD_CREDENTIALS=~/.osm/lxd-credentials.yaml
137 # Apply sysctl production values for optimal performance
138 sudo cp /usr/share/osm-devops/installers/60-lxd-production.conf /etc/sysctl.d/60-lxd-production.conf
139 sudo sysctl --system
140 # Install LXD snap
141 sudo apt-get remove --purge -y liblxc1 lxc-common lxcfs lxd lxd-client
142 sudo snap install lxd
David Garcia42375212020-04-27 19:07:49 +0200143 # Configure LXD
144 sudo usermod -a -G lxd `whoami`
145 cat /usr/share/osm-devops/installers/lxd-preseed.conf | sed 's/^config: {}/config:\n core.https_address: '$LXDENDPOINT':8443/' | sg lxd -c "lxd init --preseed"
146 sg lxd -c "lxd waitready"
147 DEFAULT_MTU=$(ip addr show $DEFAULT_IF | perl -ne 'if (/mtu\s(\d+)/) {print $1;}')
148 sg lxd -c "lxc profile device set default eth0 mtu $DEFAULT_MTU"
David Garciad00e49c2020-06-19 10:33:37 +0200149 sg lxd -c "lxc network set lxdbr0 bridge.mtu $DEFAULT_MTU"
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100150
David Garcia42375212020-04-27 19:07:49 +0200151 cat << EOF > $LXD_CLOUD
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100152clouds:
153 lxd-cloud:
154 type: lxd
155 auth-types: [certificate]
156 endpoint: "https://$LXDENDPOINT:8443"
157 config:
158 ssl-hostname-verification: false
159EOF
David Garcia42375212020-04-27 19:07:49 +0200160 openssl req -nodes -new -x509 -keyout ~/.osm/client.key -out ~/.osm/client.crt -days 365 -subj "/C=FR/ST=Nice/L=Nice/O=ETSI/OU=OSM/CN=osm.etsi.org"
161 local server_cert=`cat /var/snap/lxd/common/lxd/server.crt | sed 's/^/ /'`
162 local client_cert=`cat ~/.osm/client.crt | sed 's/^/ /'`
163 local client_key=`cat ~/.osm/client.key | sed 's/^/ /'`
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100164
David Garcia42375212020-04-27 19:07:49 +0200165 cat << EOF > $LXD_CREDENTIALS
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100166credentials:
167 lxd-cloud:
David Garcia42375212020-04-27 19:07:49 +0200168 lxd-cloud:
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100169 auth-type: certificate
170 server-cert: |
171$server_cert
172 client-cert: |
173$client_cert
174 client-key: |
175$client_key
176EOF
David Garcia42375212020-04-27 19:07:49 +0200177 lxc config trust add local: ~/.osm/client.crt
178 fi
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100179
David Garcia42375212020-04-27 19:07:49 +0200180 juju add-cloud -c $CONTROLLER_NAME lxd-cloud $LXD_CLOUD --force
181 juju add-credential -c $CONTROLLER_NAME lxd-cloud -f $LXD_CREDENTIALS
182 sg lxd -c "lxd waitready"
beierlma4a37f72020-06-26 12:55:01 -0400183 juju controller-config features=[k8s-operators]
184}
185
186function wait_for_port(){
187 SERVICE=$1
188 INDEX=$2
189 TIME_TO_WAIT=30
190 start_time="$(date -u +%s)"
191 while true
192 do
193 now="$(date -u +%s)"
194 if [[ $(( now - start_time )) -gt $TIME_TO_WAIT ]];then
195 echo "Failed to expose external ${SERVICE} interface port"
196 exit 1
197 fi
198
beierlm9afb0ef2020-10-16 12:53:51 -0400199 if [ $(sg ${KUBEGRP} -c "${KUBECTL} get ingresses.networking -n osm -o json | jq -r '.items[$INDEX].metadata.name'") == ${SERVICE} ] ; then
beierlma4a37f72020-06-26 12:55:01 -0400200 break
201 fi
202 sleep 1
203 done
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100204}
205
206function deploy_charmed_osm(){
beierlmf2782c52020-11-05 17:04:05 -0500207 if [ -v REGISTRY_INFO ] ; then
208 registry_parts=(${REGISTRY_INFO//@/ })
209 if [ ${#registry_parts[@]} -eq 1 ] ; then
210 # No credentials supplied
211 REGISTRY_USERNAME=""
212 REGISTRY_PASSWORD=""
213 REGISTRY_URL=${registry_parts[0]}
214 else
215 credentials=${registry_parts[0]}
216 credential_parts=(${credentials//:/ })
217 REGISTRY_USERNAME=${credential_parts[0]}
218 REGISTRY_PASSWORD=${credential_parts[1]}
219 REGISTRY_URL=${registry_parts[1]}
220 fi
221 # Ensure the URL ends with a /
222 case $REGISTRY_URL in
223 */) ;;
224 *) REGISTRY_URL=${REGISTRY_URL}/
225 esac
226 fi
227
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100228 create_overlay
229 echo "Creating OSM model"
David Garcia42375212020-04-27 19:07:49 +0200230 if [ -v KUBECFG ]; then
David Garciaef349d92020-12-10 21:16:12 +0100231 juju add-model $MODEL_NAME $K8S_CLOUD_NAME
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100232 else
David Garciaef349d92020-12-10 21:16:12 +0100233 sg ${KUBEGRP} -c "juju add-model $MODEL_NAME $K8S_CLOUD_NAME"
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100234 fi
235 echo "Deploying OSM with charms"
beierlma4a37f72020-06-26 12:55:01 -0400236 images_overlay=""
beierlmf2782c52020-11-05 17:04:05 -0500237 if [ -v REGISTRY_URL ]; then
238 [ ! -v TAG ] && TAG='latest'
239 fi
beierlma4a37f72020-06-26 12:55:01 -0400240 [ -v TAG ] && generate_images_overlay && images_overlay="--overlay $IMAGES_OVERLAY_FILE"
beierlmf2782c52020-11-05 17:04:05 -0500241
David Garcia42375212020-04-27 19:07:49 +0200242 if [ -v BUNDLE ]; then
David Garciaef349d92020-12-10 21:16:12 +0100243 juju deploy -m $MODEL_NAME $BUNDLE --overlay ~/.osm/vca-overlay.yaml $images_overlay
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100244 else
David Garciaef349d92020-12-10 21:16:12 +0100245 juju deploy -m $MODEL_NAME cs:osm-53 --overlay ~/.osm/vca-overlay.yaml $images_overlay
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100246 fi
beierlma4a37f72020-06-26 12:55:01 -0400247
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100248 echo "Waiting for deployment to finish..."
beierlma4a37f72020-06-26 12:55:01 -0400249 check_osm_deployed
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100250 echo "OSM with charms deployed"
beierlma4a37f72020-06-26 12:55:01 -0400251 if [ ! -v KUBECFG ]; then
beierlma4a37f72020-06-26 12:55:01 -0400252 API_SERVER=${DEFAULT_IP}
253 else
254 API_SERVER=$(kubectl config view --minify | grep server | cut -f 2- -d ":" | tr -d " ")
255 proto="$(echo $API_SERVER | grep :// | sed -e's,^\(.*://\).*,\1,g')"
256 url="$(echo ${API_SERVER/$proto/})"
257 user="$(echo $url | grep @ | cut -d@ -f1)"
258 hostport="$(echo ${url/$user@/} | cut -d/ -f1)"
259 API_SERVER="$(echo $hostport | sed -e 's,:.*,,g')"
260 fi
261
David Garciade5fc1d2020-09-02 11:40:12 +0200262 # Expose OSM services
David Garciaef349d92020-12-10 21:16:12 +0100263 # Expose NBI
264 juju config -m $MODEL_NAME nbi site_url=https://nbi.${API_SERVER}.xip.io
265 juju config -m $MODEL_NAME ng-ui site_url=https://ui.${API_SERVER}.xip.io
266
beierlm9afb0ef2020-10-16 12:53:51 -0400267 # Expose Grafana
David Garciaef349d92020-12-10 21:16:12 +0100268 juju config -m $MODEL_NAME grafana-k8s juju-external-hostname=grafana.${API_SERVER}.xip.io
269 juju expose -m $MODEL_NAME grafana-k8s
beierlm9afb0ef2020-10-16 12:53:51 -0400270 wait_for_port grafana-k8s 0
271
beierlm9afb0ef2020-10-16 12:53:51 -0400272 # Expose Prometheus
David Garciaef349d92020-12-10 21:16:12 +0100273 juju config -m $MODEL_NAME prometheus-k8s juju-external-hostname=prometheus.${API_SERVER}.xip.io
274 juju expose -m $MODEL_NAME prometheus-k8s
275 wait_for_port prometheus-k8s 1
beierlma4a37f72020-06-26 12:55:01 -0400276
David Garciade5fc1d2020-09-02 11:40:12 +0200277 # Apply annotations
beierlm9afb0ef2020-10-16 12:53:51 -0400278 sg ${KUBEGRP} -c "${KUBECTL} annotate ingresses.networking nginx.ingress.kubernetes.io/proxy-body-size=0 -n osm -l juju-app=ng-ui"
beierlm9afb0ef2020-10-16 12:53:51 -0400279}
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100280
281function check_osm_deployed() {
beierlma4a37f72020-06-26 12:55:01 -0400282 TIME_TO_WAIT=600
283 start_time="$(date -u +%s)"
David Garcia02a5eb92020-11-28 14:41:22 +0100284 total_service_count=14
beierlm7e54dfc2020-09-24 15:27:53 -0400285 previous_count=0
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100286 while true
287 do
David Garciaef349d92020-12-10 21:16:12 +0100288 service_count=$(juju status -m $MODEL_NAME | grep kubernetes | grep active | wc -l)
beierlma4a37f72020-06-26 12:55:01 -0400289 echo "$service_count / $total_service_count services active"
290 if [ $service_count -eq $total_service_count ]; then
291 break
292 fi
beierlm7e54dfc2020-09-24 15:27:53 -0400293 if [ $service_count -ne $previous_count ]; then
294 previous_count=$service_count
295 start_time="$(date -u +%s)"
296 fi
beierlma4a37f72020-06-26 12:55:01 -0400297 now="$(date -u +%s)"
298 if [[ $(( now - start_time )) -gt $TIME_TO_WAIT ]];then
299 echo "Timed out waiting for OSM services to become ready"
300 exit 1
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100301 fi
302 sleep 10
303 done
304}
305
306function create_overlay() {
David Garcia42375212020-04-27 19:07:49 +0200307 sudo snap install jq
David Garciac8660ad2020-12-16 13:13:20 +0100308 sudo snap install yq
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100309 local HOME=/home/$USER
David Garciac8660ad2020-12-16 13:13:20 +0100310 local vca_user=$(cat $HOME/.local/share/juju/accounts.yaml | yq r - controllers.$CONTROLLER_NAME.user)
311 local vca_password=$(cat $HOME/.local/share/juju/accounts.yaml | yq r - controllers.$CONTROLLER_NAME.password)
312 local vca_host=$(cat $HOME/.local/share/juju/controllers.yaml | yq r - controllers.$CONTROLLER_NAME.api-endpoints[0] | cut -d ":" -f 1)
313 local vca_port=$(cat $HOME/.local/share/juju/controllers.yaml | yq r - controllers.$CONTROLLER_NAME.api-endpoints[0] | cut -d ":" -f 2)
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100314 local vca_pubkey=\"$(cat $HOME/.local/share/juju/ssh/juju_id_rsa.pub)\"
315 local vca_cloud="lxd-cloud"
316 # Get the VCA Certificate
David Garciac8660ad2020-12-16 13:13:20 +0100317 local vca_cacert=$(cat $HOME/.local/share/juju/controllers.yaml | yq r - controllers.$CONTROLLER_NAME.ca-cert | base64 | tr -d \\n)
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100318
319 # Calculate the default route of this machine
Dominik Fleischmannc57296f2020-06-09 11:45:08 +0200320 local DEFAULT_IF=`ip route list match 0.0.0.0 | awk '{print $5}'`
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100321
322 # Generate a new overlay.yaml, overriding any existing one
David Garcia42375212020-04-27 19:07:49 +0200323 cat << EOF > /tmp/vca-overlay.yaml
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100324applications:
325 lcm-k8s:
326 options:
327 vca_user: $vca_user
328 vca_password: $vca_password
329 vca_host: $vca_host
330 vca_port: $vca_port
331 vca_pubkey: $vca_pubkey
332 vca_cacert: $vca_cacert
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100333 vca_cloud: $vca_cloud
beierlma4a37f72020-06-26 12:55:01 -0400334 vca_k8s_cloud: $K8S_CLOUD_NAME
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100335 mon-k8s:
336 options:
337 vca_user: $vca_user
338 vca_password: $vca_password
339 vca_host: $vca_host
340 vca_cacert: $vca_cacert
341EOF
David Garcia42375212020-04-27 19:07:49 +0200342 mv /tmp/vca-overlay.yaml ~/.osm/
343 OSM_VCA_HOST=$vca_host
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100344}
345
David Garcia69388c22020-05-07 12:14:19 +0200346function generate_images_overlay(){
David Garciaef349d92020-12-10 21:16:12 +0100347 cat << EOF > /tmp/nbi_registry.yaml
348registrypath: ${REGISTRY_URL}opensourcemano/nbi:$TAG
349EOF
350 cat << EOF > /tmp/ng_ui_registry.yaml
351registrypath: ${REGISTRY_URL}opensourcemano/ng-ui:$TAG
352EOF
beierlmf2782c52020-11-05 17:04:05 -0500353 if [ ! -z "$REGISTRY_USERNAME" ] ; then
354 REGISTRY_CREDENTIALS=$(cat <<EOF
355
356 image_username: $REGISTRY_USERNAME
357 image_password: $REGISTRY_PASSWORD
358EOF
359 );
David Garciaef349d92020-12-10 21:16:12 +0100360 echo username: $REGISTRY_USERNAME >> /tmp/nbi_registry.yaml
361 echo password: $REGISTRY_PASSWORD >> /tmp/nbi_registry.yaml
362 echo username: $REGISTRY_USERNAME >> /tmp/ng_ui_registry.yaml
363 echo password: $REGISTRY_PASSWORD >> /tmp/ng_ui_registry.yaml
beierlmf2782c52020-11-05 17:04:05 -0500364fi
365
David Garcia69388c22020-05-07 12:14:19 +0200366 cat << EOF > /tmp/images-overlay.yaml
367applications:
368 lcm-k8s:
369 options:
beierlmf2782c52020-11-05 17:04:05 -0500370 image: ${REGISTRY_URL}opensourcemano/lcm:$TAG ${REGISTRY_CREDENTIALS}
David Garcia69388c22020-05-07 12:14:19 +0200371 mon-k8s:
372 options:
beierlmf2782c52020-11-05 17:04:05 -0500373 image: ${REGISTRY_URL}opensourcemano/mon:$TAG ${REGISTRY_CREDENTIALS}
David Garcia69388c22020-05-07 12:14:19 +0200374 ro-k8s:
375 options:
beierlmf2782c52020-11-05 17:04:05 -0500376 image: ${REGISTRY_URL}opensourcemano/ro:$TAG ${REGISTRY_CREDENTIALS}
David Garciaef349d92020-12-10 21:16:12 +0100377 nbi:
378 resources:
379 image: /tmp/nbi_registry.yaml
David Garcia69388c22020-05-07 12:14:19 +0200380 pol-k8s:
381 options:
beierlmf2782c52020-11-05 17:04:05 -0500382 image: ${REGISTRY_URL}opensourcemano/pol:$TAG ${REGISTRY_CREDENTIALS}
beierlma4a37f72020-06-26 12:55:01 -0400383 pla:
384 options:
beierlmf2782c52020-11-05 17:04:05 -0500385 image: ${REGISTRY_URL}opensourcemano/pla:$TAG ${REGISTRY_CREDENTIALS}
beierlma4a37f72020-06-26 12:55:01 -0400386 ng-ui:
David Garciaef349d92020-12-10 21:16:12 +0100387 resources:
388 image: /tmp/ng_ui_registry.yaml
David Garcia009a5d62020-08-27 16:53:44 +0200389 keystone:
390 options:
beierlmf2782c52020-11-05 17:04:05 -0500391 image: ${REGISTRY_URL}opensourcemano/keystone:$TAG ${REGISTRY_CREDENTIALS}
David Garcia69388c22020-05-07 12:14:19 +0200392EOF
393 mv /tmp/images-overlay.yaml $IMAGES_OVERLAY_FILE
394}
395
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100396function install_osmclient() {
397 sudo snap install osmclient
398 sudo snap alias osmclient.osm osm
399}
400
beierlmdf6de3d2020-12-16 08:46:40 -0500401function add_local_k8scluster() {
402 osm --all-projects vim-create \
403 --name _system-osm-vim \
404 --account_type dummy \
405 --auth_url http://dummy \
406 --user osm --password osm --tenant osm \
407 --description "dummy" \
408 --config '{management_network_name: mgmt}'
409 tmpfile=$(mktemp --tmpdir=${HOME})
410 cp ${KUBECONFIG} ${tmpfile}
411 osm --all-projects k8scluster-add \
412 --creds ${tmpfile} \
413 --vim _system-osm-vim \
414 --k8s-nets '{"net1": null}' \
415 --version '1.19' \
416 --description "OSM Internal Cluster" \
417 _system-osm-k8s
418 rm -f ${tmpfile}
419}
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100420
421function install_microstack() {
422 sudo snap install microstack --classic --beta
423 sudo microstack.init --auto
424 wget https://cloud-images.ubuntu.com/releases/16.04/release/ubuntu-16.04-server-cloudimg-amd64-disk1.img -P ~/.osm/
425 microstack.openstack image create \
David Garcia42375212020-04-27 19:07:49 +0200426 --public \
427 --disk-format qcow2 \
428 --container-format bare \
429 --file ~/.osm/ubuntu-16.04-server-cloudimg-amd64-disk1.img \
430 ubuntu1604
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100431 ssh-keygen -t rsa -N "" -f ~/.ssh/microstack
432 microstack.openstack keypair create --public-key ~/.ssh/microstack.pub microstack
David Garciaef349d92020-12-10 21:16:12 +0100433 export OSM_HOSTNAME=`juju status --format json | jq -rc '.applications."nbi".address'`
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100434 osm vim-create --name microstack-site \
David Garcia42375212020-04-27 19:07:49 +0200435 --user admin \
436 --password keystone \
437 --auth_url http://10.20.20.1:5000/v3 \
438 --tenant admin \
439 --account_type openstack \
440 --config='{security_groups: default,
441 keypair: microstack,
442 project_name: admin,
443 user_domain_name: default,
444 region_name: microstack,
445 insecure: True,
446 availability_zone: nova,
447 version: 3}'
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100448}
449
Dominik Fleischmannc57296f2020-06-09 11:45:08 +0200450DEFAULT_IF=`ip route list match 0.0.0.0 | awk '{print $5}'`
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100451DEFAULT_IP=`ip -o -4 a |grep ${DEFAULT_IF}|awk '{split($4,a,"/"); print a[1]}'`
452
453check_arguments $@
David Garcia42375212020-04-27 19:07:49 +0200454mkdir -p ~/.osm
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100455install_snaps
456bootstrap_k8s_lxd
457deploy_charmed_osm
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100458install_osmclient
beierlmdf6de3d2020-12-16 08:46:40 -0500459OSM_HOSTNAME=$(juju config nbi site_url | sed "s/http.*\?:\/\///"):443
460add_local_k8scluster
461
David Garcia42375212020-04-27 19:07:49 +0200462if [ -v MICROSTACK ]; then
Dominik Fleischmann5e4a7512020-03-06 14:05:06 +0100463 install_microstack
464fi
beierlma4a37f72020-06-26 12:55:01 -0400465
beierlm7e54dfc2020-09-24 15:27:53 -0400466
beierlma4a37f72020-06-26 12:55:01 -0400467echo "Your installation is now complete, follow these steps for configuring the osmclient:"
468echo
469echo "1. Create the OSM_HOSTNAME environment variable with the NBI IP"
470echo
beierlm7e54dfc2020-09-24 15:27:53 -0400471echo "export OSM_HOSTNAME=$OSM_HOSTNAME"
beierlma4a37f72020-06-26 12:55:01 -0400472echo
473echo "2. Add the previous command to your .bashrc for other Shell sessions"
474echo
beierlm7e54dfc2020-09-24 15:27:53 -0400475echo "echo \"export OSM_HOSTNAME=$OSM_HOSTNAME\" >> ~/.bashrc"
beierlma4a37f72020-06-26 12:55:01 -0400476echo
477echo "DONE"