Merge "Adding pdf and idf for Ericsson pod 1"
[kuberef.git] / functions.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c)
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 # Clean up
12
13 clean_up() {
14     if sudo virsh list --all | grep "${VM_NAME}.*running" ; then
15         sudo virsh destroy $VM_NAME
16     fi
17     if sudo virsh list --all | grep "${VM_NAME}" ; then
18         sudo virsh undefine $VM_NAME
19     fi
20         sudo rm -rf /var/lib/libvirt/images/$VM_NAME
21         sleep 5
22 }
23
24 # Create jumphost VM
25
26 create_jump() {
27     ./create_vm.sh $VM_NAME
28     sleep 30
29 }
30
31 # Get jumphost VM IP
32
33 get_vm_ip() {
34     sudo virsh domifaddr ${VM_NAME} | awk 'FNR == 3 {gsub(/\/.*/, ""); print $4}'
35 }
36
37 # Setup PXE network
38
39 setup_PXE_network() {
40     ssh -o StrictHostKeyChecking=no -tT $USERNAME@$(get_vm_ip) << EOF
41     sudo ifconfig $PXE_IF up
42     sudo ifconfig $PXE_IF $PXE_IF_IP netmask $NETMASK
43     sudo ifconfig $PXE_IF hw ether $PXE_IF_MAC
44 EOF
45 }
46
47 # Copy files needed by Infra engine & BMRA in the jumphost VM
48
49 copy_files_jump() {
50     scp -r -o StrictHostKeyChecking=no $CURRENTPATH/{hw_config/$VENDOR/,sw_config/$INSTALLER/} \
51             $USERNAME@$(get_vm_ip):$PROJECT_ROOT
52 }
53
54 # Host Provisioning
55
56 provision_hosts() {
57 # SSH to jumphost
58     ssh -tT $USERNAME@$(get_vm_ip) << EOF
59 # Install and run cloud-infra
60     if [ ! -d "${PROJECT_ROOT}/engine" ]; then
61       ssh-keygen -t rsa -N "" -f ${PROJECT_ROOT}/.ssh/id_rsa
62       git clone https://gerrit.nordix.org/infra/engine.git
63       cp $PROJECT_ROOT/$VENDOR/{pdf.yaml,idf.yaml} ${PROJECT_ROOT}/engine/engine
64 #      sudo mkdir /httpboot && sudo cp -r ${PROJECT_ROOT}/deployment_image.qcow2 /httpboot #will be removed when centos image path will be added in infra-engine
65     fi
66       cd ${PROJECT_ROOT}/engine/engine && ./deploy.sh -s ironic -d centos7 \
67        -p file:///${PROJECT_ROOT}/engine/engine/pdf.yaml -i file:///${PROJECT_ROOT}/engine/engine/idf.yaml
68 EOF
69 }
70
71 # Setup networking on provisioned hosts (Adapt setup_network.sh according to your network setup) 
72
73 setup_network() {
74 # SSH to jumphost
75     ssh -tT $USERNAME@$(get_vm_ip) << EOF
76     ssh -o StrictHostKeyChecking=no root@$MASTER_IP 'bash -s' <  ${PROJECT_ROOT}/${VENDOR}/setup_network.sh
77     ssh -o StrictHostKeyChecking=no root@$WORKER_IP 'bash -s' <  ${PROJECT_ROOT}/${VENDOR}/setup_network.sh
78 EOF
79 }
80
81 # k8s Provisioning (currently BMRA)
82
83 provision_k8s() {
84 # SSH to jumphost
85     ssh -tT $USERNAME@$(get_vm_ip) << EOF
86 # Install BMRA
87     if [ ! -d "${PROJECT_ROOT}/container-experience-kits" ]; then
88       curl -fsSL https://get.docker.com/ | sh
89       printf "Waiting for docker service..."
90       until sudo docker info; do
91           printf "."
92           sleep 2
93       done
94       git clone https://github.com/intel/container-experience-kits.git
95       cd ${PROJECT_ROOT}/container-experience-kits
96       git checkout v1.4.1
97       git submodule update --init
98       cp -r examples/group_vars examples/host_vars .
99       cp ${PROJECT_ROOT}/${INSTALLER}/inventory.ini ${PROJECT_ROOT}/container-experience-kits/
100       cp ${PROJECT_ROOT}/${INSTALLER}/all.yml ${PROJECT_ROOT}/container-experience-kits/group_vars/
101       cp ${PROJECT_ROOT}/${INSTALLER}/node1.yml ${PROJECT_ROOT}/container-experience-kits/host_vars/
102     fi
103     sudo service docker start
104     sudo docker run --rm -v ${PROJECT_ROOT}/container-experience-kits:/bmra -v ~/.ssh/:/root/.ssh/ \
105         rihabbanday/bmra-install:centos ansible-playbook -i /bmra/inventory.ini /bmra/playbooks/cluster.yml
106 EOF
107 }