Add migration tool to assist with R5 to R6
[icn.git] / deploy / metal3 / scripts / 01_metal3.sh
index fa9e2ec..0b0d564 100755 (executable)
-#!/bin/bash
-set +ex
+#!/usr/bin/env bash
+set -eu -o pipefail
 
-LIBDIR="$(dirname "$(dirname "$(dirname "$PWD")")")"
+SCRIPTDIR="$(readlink -f $(dirname ${BASH_SOURCE[0]}))"
+LIBDIR="$(dirname $(dirname $(dirname ${SCRIPTDIR})))/env/lib"
 
 eval "$(go env)"
 
-source $LIBDIR/env/lib/common.sh
+source $LIBDIR/common.sh
 
 if [[ $EUID -ne 0 ]]; then
     echo "This script must be run as root"
     exit 1
 fi
 
-IMAGE_URL=http://172.22.0.1/images/${BM_IMAGE}
-IMAGE_CHECKSUM=http://172.22.0.1/images/${BM_IMAGE}.md5sum
-
-function get_default_inteface_ipaddress {
-    local _ip=$1
-    local _default_interface=$(awk '$2 == 00000000 { print $1 }' /proc/net/route)
-    local _ipv4address=$(ip addr show dev $_default_interface | awk '$1 == "inet" { sub("/.*", "", $2); print $2 }')
-    eval $_ip="'$_ipv4address'"
-}
-
-function create_ssh_key {
-    #ssh key for compute node to communicate back to bootstrap server
-    mkdir -p $BUILD_DIR/ssh_key
-    ssh-keygen -C "compute.icn.akraino.lfedge.org" -f $BUILD_DIR/ssh_key/id_rsa
-    cat $BUILD_DIR/ssh_key/id_rsa.pub >> $HOME/.ssh/authorized_keys
-}
-
-function set_compute_key {
-    _SSH_LOCAL_KEY=$(cat $BUILD_DIR/ssh_key/id_rsa)
-    cat << EOF
-write_files:
-- path: /opt/ssh_id_rsa
-    owner: root:root
-    permissions: '0600'
-    content: |
-    $_SSH_LOCAL_KEY
-EOF
-}
-
 function deprovision_compute_node {
     name="$1"
-    kubectl patch baremetalhost $name -n metal3 --type merge \
-    -p '{"spec":{"image":{"url":"","checksum":""}}}'
-}
-
-function set_compute_ssh_config {
-    get_default_inteface_ipaddress default_addr
-    cat << EOF
-- path: /root/.ssh/config
-    owner: root:root
-    permissions: '0600'
-    content: |
-    Host bootstrapmachine $default_addr
-    HostName $default_addr
-    IdentityFile /opt/ssh_id_rsa
-    User $USER
-- path: /etc/apt/sources.list
-    owner: root:root
-    permissions: '0665'
-    content: |
-    deb [trusted=yes] ssh://$USER@$default_addr:$LOCAL_APT_REPO ./
-EOF
-}
-
-function create_userdata {
-    name="$1"
-    COMPUTE_NODE_FQDN="$name.akraino.icn.org"
-    printf "#cloud-config\n" >  $name-userdata.yaml
-    if [ -n "$COMPUTE_NODE_PASSWORD" ]; then
-    printf "password: ""%s" "$COMPUTE_NODE_PASSWORD" >>  $name-userdata.yaml
-    printf "\nchpasswd: {expire: False}\n" >>  $name-userdata.yaml
-    printf "ssh_pwauth: True\n" >>  $name-userdata.yaml
-    fi
-
-    if [ -n "$COMPUTE_NODE_FQDN" ]; then
-    printf "fqdn: ""%s" "$COMPUTE_NODE_FQDN" >>  $name-userdata.yaml
-    printf "\n" >>  $name-userdata.yaml
-    fi
-    printf "disable_root: false\n" >>  $name-userdata.yaml
-    printf "ssh_authorized_keys:\n  - " >>  $name-userdata.yaml
-
-    if [ ! -f $HOME/.ssh/id_rsa.pub ]; then
-    yes y | ssh-keygen -t rsa -N "" -f $HOME/.ssh/id_rsa
+    if kubectl get baremetalhost $name -n metal3 &>/dev/null; then
+        kubectl patch baremetalhost $name -n metal3 --type merge \
+        -p '{"spec":{"image":{"url":"","checksum":""}}}'
     fi
-
-    cat $HOME/.ssh/id_rsa.pub >>  $name-userdata.yaml
-    network_config_files >> $name-userdata.yaml
-    printf "\n" >>  $name-userdata.yaml
-}
-
-function launch_baremetal_operator {
-    if [ ! -d $GOPATH/src/github.com/metal3-io/baremetal-operator ]; then
-        go get github.com/metal3-io/baremetal-operator
-        git checkout 3d40caa29dce82878d83aeb7f8dab4dc4a856160
-    fi
-
-    pushd $GOPATH/src/github.com/metal3-io/baremetal-operator
-    make deploy
-    popd
-}
-
-function network_config_files {
-    cat << 'EOF'
-write_files:
-- path: /opt/ironic_net.sh
-  owner: root:root
-  permissions: '0777'
-  content: |
-    #!/usr/bin/env bash
-    set -xe
-    for intf in /sys/class/net/*; do
-        sudo ifconfig `basename $intf` up
-        sudo dhclient -nw `basename $intf`
-    done
-runcmd:
- - [ /opt/ironic_net.sh ]
-EOF
-}
-
-function apply_userdata_credential {
-    name="$1"
-    cat <<EOF > ./$name-user-data-credential.yaml
-apiVersion: v1
-data:
-  userData: $(base64 -w 0 $name-userdata.yaml)
-kind: Secret
-metadata:
-  name: $name-user-data
-  namespace: metal3
-type: Opaque
-EOF
-    kubectl apply -n metal3 -f $name-user-data-credential.yaml
 }
 
 function make_bm_hosts {
-    while read -r name username password address; do
-        create_userdata $name
-        apply_userdata_credential $name
-
-        go run $GOPATH/src/github.com/metal3-io/baremetal-operator/cmd/make-bm-worker/main.go \
-           -address "ipmi://$address" \
-           -password "$password" \
-           -user "$username" \
-           "$name" > $name-bm-node.yaml
-
-        printf "  image:" >> $name-bm-node.yaml
-        printf "\n    url: ""%s" "$IMAGE_URL" >> $name-bm-node.yaml
-        printf "\n    checksum: ""%s" "$IMAGE_CHECKSUM" >> $name-bm-node.yaml
-        printf "\n  userData:" >> $name-bm-node.yaml
-        printf "\n    name: ""%s" "$name""-user-data" >> $name-bm-node.yaml
-        printf "\n    namespace: metal3\n" >> $name-bm-node.yaml
-        kubectl apply -f $name-bm-node.yaml -n metal3
+    while IFS=',' read -r name ipmi_username ipmi_password ipmi_address boot_mac os_username os_password os_image_name; do
+       node_machine_values >${SCRIPTDIR}/${name}-values.yaml
+       helm -n metal3 install ${name} ${SCRIPTDIR}/../../machine --create-namespace -f ${SCRIPTDIR}/${name}-values.yaml
+
     done
 }
 
@@ -163,49 +35,59 @@ function configure_nodes {
     fi
 
     #make sure nodes.json file in /opt/ironic/ are configured
-    if [ ! -f $IRONIC_DATA_DIR/nodes.json ]; then
-        cp $PWD/nodes.json.sample $IRONIC_DATA_DIR/nodes.json
+    if [ ! -f $NODES_FILE ]; then
+        cp ${SCRIPTDIR}/nodes.json.sample $NODES_FILE
     fi
 }
 
-function remove_bm_hosts {
-    while read -r name username password address; do
+function deprovision_bm_hosts {
+    while IFS=',' read -r name ipmi_username ipmi_password ipmi_address boot_mac os_username os_password os_image_name; do
         deprovision_compute_node $name
     done
 }
 
+function clean_bm_hosts {
+    while IFS=',' read -r name ipmi_username ipmi_password ipmi_address boot_mac os_username os_password os_image_name; do
+       helm -n metal3 uninstall ${name}
+       rm -rf ${SCRIPTDIR}/${name}-values.yaml
+    done
+}
+
+function clean_all {
+    list_nodes | clean_bm_hosts
+    if [ -f $NODES_FILE ]; then
+        rm -rf $NODES_FILE
+    fi
+}
+
 function apply_bm_hosts {
     list_nodes | make_bm_hosts
 }
 
 function deprovision_all_hosts {
-    list_nodes | remove_bm_hosts
+    list_nodes | deprovision_bm_hosts
 }
 
-if [ "$1" == "launch" ]; then
-    launch_baremetal_operator
-    exit 0
-fi
-
 if [ "$1" == "deprovision" ]; then
+    configure_nodes
     deprovision_all_hosts
     exit 0
 fi
 
 if [ "$1" == "provision" ]; then
+    configure_nodes
     apply_bm_hosts
     exit 0
 fi
 
+if [ "$1" == "clean" ]; then
+    configure_nodes
+    clean_all
+    exit 0
+fi
+
 echo "Usage: metal3.sh"
-echo "launch      - Launch the metal3 operator"
 echo "provision   - provision baremetal node as specified in common.sh"
 echo "deprovision - deprovision baremetal node as specified in common.sh"
+echo "clean       - clean all the bmh resources"
 exit 1
-
-#Following code is tested for the offline mode
-#Will be intergrated for the offline mode for ICNi v.0.1.0 beta
-#create_ssh_key
-#create_userdata
-#set_compute_key
-#set_compute_ssh_config