ab205197b5
This adds support for deploying a virtualised control plane via Tenks, using the Kayobe development scripts tenks-deploy.sh and tenks-teardown.sh. Change-Id: I752455af9eb44cdb0f9921fd0c876fc2dfb50a5c
27 lines
455 B
Bash
Executable File
27 lines
455 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# Simple script to teardown a Tenks cluster. This should be executed from
|
|
# within the VM. Arguments:
|
|
# $1: The path to the Tenks repo.
|
|
|
|
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source "${PARENT}/functions"
|
|
|
|
|
|
function main {
|
|
if [ -z ${1+x} ]; then
|
|
echo "Usage: $0 <tenks repo path>"
|
|
return 1
|
|
fi
|
|
tenks_path="$1"
|
|
|
|
config_init
|
|
tenks_teardown "$tenks_path"
|
|
}
|
|
|
|
main "$@"
|