Do not error when a deleted resource is not found
[icn.git] / env / metal3 / 03_launch_prereq.sh
1 #!/usr/bin/env bash
2 set -eux -o pipefail
3
4 LIBDIR="$(dirname "$PWD")"
5
6 source $LIBDIR/lib/logging.sh
7 source $LIBDIR/lib/common.sh
8
9 if [[ $EUID -ne 0 ]]; then
10     echo "launch script must be run as root"
11     exit 1
12 fi
13
14 function get_default_interface_ipaddress {
15     local _ip=$1
16     local _default_interface=$(awk '$2 == 00000000 { print $1 }' /proc/net/route)
17     local _ipv4address=$(ip addr show dev $_default_interface | awk '$1 == "inet" { sub("/.*", "", $2); print $2 }')
18     eval $_ip="'$_ipv4address'"
19 }
20
21 function check_cni_network {
22     #since bootstrap cluster is a single node cluster,
23     #podman and bootstap cluster have same network configuration to avoid the cni network conf conflicts
24     if [ ! -d "/etc/cni/net.d" ]; then
25         mkdir -p "/etc/cni/net.d"
26     fi
27
28     if [ -f "/etc/cni/net.d/87-podman-bridge.conflist" ]; then
29         rm -rf /etc/cni/net.d/87-podman-bridge.conflist
30     fi
31
32     if [ "$1" == "offline" ]; then
33         cp $BUILD_DIR/87-podman-bridge.conflist /etc/cni/net.d/
34         return
35     fi
36
37     if !(wget $PODMAN_CNI_CONFLIST -P /etc/cni/net.d/); then
38         exit 1
39     fi
40 }
41
42 function create_k8s_regular_user {
43     if [ ! -d "$HOME/.kube" ]; then
44         mkdir -p $HOME/.kube
45     fi
46
47     if [ ! -f /etc/kubernetes/admin.conf]; then
48         exit 1
49     fi
50
51     cp -rf /etc/kubernetes/admin.conf $HOME/.kube/config
52     chown $(id -u):$(id -g) $HOME/.kube/config
53 }
54
55 function check_k8s_node_status {
56     echo 'checking bootstrap cluster single node status'
57     node_status="False"
58
59     for i in {1..5}; do
60         check_node=$(kubectl get node -o \
61             jsonpath='{.items[0].status.conditions[?(@.reason == "KubeletReady")].status}')
62         if [ $check_node != "" ]; then
63             node_status=${check_node}
64         fi
65
66         if [ $node_status == "True" ]; then
67             break
68         fi
69
70         sleep 3
71     done
72
73     if [ $node_status != "True" ]; then
74         echo "bootstrap cluster single node status is not ready"
75         exit 1
76     fi
77 }
78
79 function install_ironic_container {
80     # set password for mariadb
81     mariadb_password=$(echo $(date;hostname)|sha256sum |cut -c-20)
82
83     # Start image downloader container
84     docker run -d --net host --privileged --name ipa-downloader \
85         --env-file "${PWD}/ironic.env" \
86         -v "$IRONIC_DATA_DIR:/shared" "${IPA_DOWNLOADER_IMAGE}" /usr/local/bin/get-resource.sh
87
88     docker wait ipa-downloader
89
90     if [ ! -e "$IRONIC_DATA_DIR/html/images/ironic-python-agent.kernel" ] ||
91        [ ! -e "$IRONIC_DATA_DIR/html/images/ironic-python-agent.initramfs" ]; then
92         echo "Failed to get ironic-python-agent"
93         exit 1
94     fi
95
96     # Start dnsmasq, http, mariadb, and ironic containers using same image
97     # See this file for env vars you can set, like IP, DHCP_RANGE, INTERFACE
98     docker run -d --net host --privileged --name dnsmasq \
99         --env-file "${PWD}/ironic.env" \
100         -v "$IRONIC_DATA_DIR:/shared" --entrypoint /bin/rundnsmasq "${IRONIC_IMAGE}"
101
102     # For available env vars, see:
103     docker run -d --net host --privileged --name httpd \
104         --env-file "${PWD}/ironic.env" \
105         -v "$IRONIC_DATA_DIR:/shared" --entrypoint /bin/runhttpd "${IRONIC_IMAGE}"
106
107     # https://github.com/metal3-io/ironic/blob/master/runmariadb.sh
108     docker run -d --net host --privileged --name mariadb \
109         --env-file "${PWD}/ironic.env" \
110         -v "$IRONIC_DATA_DIR:/shared" --entrypoint /bin/runmariadb \
111         --env "MARIADB_PASSWORD=$mariadb_password" "${IRONIC_IMAGE}"
112
113     # See this file for additional env vars you may want to pass, like IP and INTERFACE
114     docker run -d --net host --privileged --name ironic \
115         --env-file "${PWD}/ironic.env" \
116         --env "MARIADB_PASSWORD=$mariadb_password" \
117         -v "$IRONIC_DATA_DIR:/shared" "${IRONIC_IMAGE}"
118
119     # Start Ironic Inspector
120     docker run -d --net host --privileged --name ironic-inspector \
121         --env-file "${PWD}/ironic.env" \
122         -v "$IRONIC_DATA_DIR:/shared" "${IRONIC_INSPECTOR_IMAGE}"
123 }
124
125 function remove_k8s_noschedule_taint {
126     #Bootstrap cluster is a single node
127     nodename=$(kubectl get node -o jsonpath='{.items[0].metadata.name}')
128     if !(kubectl taint node $nodename node-role.kubernetes.io/master:NoSchedule-); then
129         exit 1
130     fi
131 }
132
133 function install_k8s_single_node {
134     get_default_interface_ipaddress apiserver_advertise_addr
135     kubeadm_init="kubeadm init --kubernetes-version=$KUBE_VERSION \
136         --pod-network-cidr=$POD_NETWORK_CIDR \
137         --apiserver-advertise-address=$apiserver_advertise_addr"
138     if !(${kubeadm_init}); then
139         exit 1
140     fi
141 }
142
143 function install_dhcp {
144     if [ ! -d $BS_DHCP_DIR ]; then
145         mkdir -p $BS_DHCP_DIR
146     fi
147
148     #make sure the dhcp conf sample are configured
149     if [ ! -f $BS_DHCP_DIR/dhcpd.conf ]; then
150         cp $PWD/05_dhcp.conf.sample $BS_DHCP_DIR/dhcpd.conf
151     fi
152
153     kubectl create -f $PWD/04_dhcp.yaml
154 }
155
156 function reset_dhcp {
157     kubectl delete --ignore-not-found=true -f $PWD/04_dhcp.yaml
158     if [ -d $BS_DHCP_DIR ]; then
159         rm -rf $BS_DHCP_DIR
160     fi
161 }
162
163 function create_ironic_env {
164     cat <<EOF > ${PWD}/ironic.env
165 PROVISIONING_INTERFACE=provisioning
166 DHCP_RANGE=172.22.0.10,172.22.0.100
167 IPA_BASEURI=https://images.rdoproject.org/train/rdo_trunk/current-tripleo
168 DEPLOY_KERNEL_URL=http://172.22.0.1/images/ironic-python-agent.kernel
169 DEPLOY_RAMDISK_URL=http://172.22.0.1/images/ironic-python-agent.initramfs
170 IRONIC_ENDPOINT=http://172.22.0.1:6385/v1/
171 IRONIC_INSPECTOR_ENDPOINT=http://172.22.0.1:5050/v1/
172 CACHEURL=http://172.22.0.1/images
173 IRONIC_FAST_TRACK=false
174 EOF
175 }
176
177 function install {
178     #Kubeadm usage is deprecated in v1,0,0 version
179     #install_kubernetes
180     #install_k8s_single_node
181     #check_cni_network $1
182     #create_k8s_regular_user
183     #check_k8s_node_status
184     #remove_k8s_noschedule_taint
185
186     #install_podman
187     #Todo - error handling mechanism
188     create_ironic_env
189     install_ironic_container
190 }
191
192 if [ "$#" -eq 0 ]; then
193     install online
194 elif [ "$1" == "-o" ]; then
195     install offline
196 elif [ "$1" == "--dhcp-start" ]; then
197     install_dhcp
198     echo "wait for 320s for nodes to be assigned"
199     sleep 6m
200 elif [ "$1" == "--dhcp-reset" ]; then
201     reset_dhcp
202     echo "wait for 320s for nodes to be re-assigned"
203     sleep 6m
204 else
205     exit 1
206 fi