#!/bin/bash CURR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" [ -d "$CURR_DIR" ] || { echo "FATAL: no current dir (maybe running in zsh?)"; exit 1; } # shellcheck source=./common.sh source "$CURR_DIR/common.sh" clustername="lifecycletest" info "Creating cluster $clustername..." $EXE cluster create "$clustername" --agents 1 --api-port 6443 --wait --timeout 360s || failed "could not create cluster $clustername" info "Sleeping for 5 seconds to give the cluster enough time to get ready..." sleep 5 # 1. check initial access to the cluster info "Checking that we have access to the cluster..." check_clusters "$clustername" || failed "error checking cluster" info "Checking that we have 2 nodes online..." check_multi_node "$clustername" 2 || failed "failed to verify number of nodes" # 2. stop the cluster info "Stopping cluster..." $EXE cluster stop "$clustername" info "Checking that cluster was stopped" check_clusters "$clustername" && failed "cluster was not stopped, since we still have access" # 3. start the cluster info "Starting cluster..." $EXE cluster start "$clustername" --wait --timeout 360s || failed "cluster didn't come back in time" info "Checking that we have access to the cluster..." check_clusters "$clustername" || failed "error checking cluster" info "Checking that we have 2 nodes online..." check_multi_node "$clustername" 2 || failed "failed to verify number of nodes" # 4. adding another agent node info "Adding one agent node..." $EXE node create "extra-agent" --cluster "$clustername" --role "agent" --wait --timeout 360s || failed "failed to add agent node" info "Checking that we have 3 nodes available now..." check_multi_node "$clustername" 3 || failed "failed to verify number of nodes" # 4. load an image into the cluster info "Importing an image into the cluster..." docker pull nginx:latest > /dev/null docker tag nginx:latest nginx:local > /dev/null $EXE image import nginx:local -c $clustername || failed "could not import image in $clustername" # 5. use that image info "Spawning a pod using the imported image..." kubectl run --image nginx:local testimage info "Waiting for a bit for the pod to start..." sleep 5 kubectl get pod testimage | grep 'Running' || failed "Pod using the imported image is not running after 5 seconds" # Cleanup info "Deleting cluster $clustername..." $EXE cluster delete "$clustername" || failed "could not delete the cluster $clustername" exit 0