Update Functest K8s test case list
[kuberef.git] / deploy.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) Ericsson AB and others
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 set -o errexit
12 set -o nounset
13 if [ "${DEBUG:-false}" == "true" ]; then
14     set -o xtrace
15 fi
16
17 # Script for end to end RI-2 deployment using Infra engine and BMRA.
18 # Please refer to README for detailed information.
19
20 # Get path information
21 CURRENTPATH=$(git rev-parse --show-toplevel)
22 export CURRENTPATH
23
24 # shellcheck source=./functions.sh
25 source "$CURRENTPATH/functions.sh"
26 # shellcheck source=./deploy.env
27 source "$CURRENTPATH/deploy.env"
28
29 # ---------------------------------------------------------------------
30 # check installation and runtime prerequisites
31 # ---------------------------------------------------------------------
32 check_prerequisites
33
34 # ---------------------------------------------------------------------
35 # creates a virtual environment for installation of dependencies
36 # ---------------------------------------------------------------------
37 creates_virtualenv
38
39 # ---------------------------------------------------------------------
40 # bootstrap install prerequisites
41 # ---------------------------------------------------------------------
42 run_playbook bootstrap
43
44 # ---------------------------------------------------------------------
45 # Create jump VM from which the installation is performed
46 # ---------------------------------------------------------------------
47 run_playbook jump-vm
48
49 # ---------------------------------------------------------------------
50 # Create BMRA config based on IDF and PDF
51 # ---------------------------------------------------------------------
52 run_playbook bmra-config
53
54 # ---------------------------------------------------------------------
55 # Copy files needed by Infra engine & BMRA in the jumphost VM
56 # ---------------------------------------------------------------------
57 copy_files_jump
58
59 # ---------------------------------------------------------------------
60 # Provision remote hosts
61 # Setup networking (Adapt according to your network setup)
62 # ---------------------------------------------------------------------
63 if [[ "$DEPLOYMENT" == "full" ]]; then
64     provision_hosts
65     setup_network
66 fi
67
68 # ---------------------------------------------------------------------
69 # Provision k8s cluster (currently BMRA)
70 # ---------------------------------------------------------------------
71 provision_k8s
72
73 # ---------------------------------------------------------------------
74 # Copy kubeconfig to desired location
75 # ---------------------------------------------------------------------
76 copy_k8s_config
77