UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit f7bb8f6d authored by Andrew Kesterson's avatar Andrew Kesterson
Browse files

#2514: Add long argument names to k3d-dev.sh

parent 85d0b476
No related branches found
No related tags found
No related merge requests found
...@@ -59,19 +59,19 @@ function process_arguments { ...@@ -59,19 +59,19 @@ function process_arguments {
case "$1" in case "$1" in
-t) -t|--project-tag)
echo "-t option passed to use additional tags on instance" echo "-t|--project option passed to use additional tags on instance"
shift shift
PROJECTTAG=$1 PROJECTTAG=$1
;; ;;
-b) -b|--big-instance)
echo "-b option passed for big k3d cluster using M5 instance" echo "-b|--big-instance option passed for big k3d cluster using M5 instance"
BIG_INSTANCE=true BIG_INSTANCE=true
;; ;;
-p) -p|--use-private-ip)
echo "-p option passed to create k3d cluster with private ip" echo "-p|--private-ip option passed to create k3d cluster with private ip"
if [[ "${ATTACH_SECONDARY_IP}" = false ]]; then if [[ "${ATTACH_SECONDARY_IP}" = false ]]; then
PRIVATE_IP=true PRIVATE_IP=true
else else
...@@ -79,123 +79,144 @@ function process_arguments { ...@@ -79,123 +79,144 @@ function process_arguments {
fi fi
;; ;;
-m) -m|--use-metallb)
echo "-m option is deprecated (default behavior is to install and use metallb)" echo "-m option is deprecated (default behavior is to install and use metallb)"
;; ;;
-M) -M|--disable-metallb)
echo "Disabling metalLB" echo "Disabling metalLB"
METAL_LB=false METAL_LB=false
;; ;;
-a) -a|--attach-secondary-public-ip)
echo "-a option passed to create secondary public IP (-p and -m flags are skipped if set)" echo "-a option passed to create secondary public IP (-p and -m flags are skipped if set)"
PRIVATE_IP=false PRIVATE_IP=false
METAL_LB=false METAL_LB=false
ATTACH_SECONDARY_IP=true ATTACH_SECONDARY_IP=true
;; ;;
-d) -d|--destroy-cloud-instance)
echo "-d option passed to destroy the AWS resources" echo "-d option passed to destroy the AWS resources"
action=destroy_instances action=destroy_instances
;; ;;
-i) -i|--init-script)
echo "-i option passed to send init script to k3d instance" echo "-i option passed to send init script to k3d instance"
shift shift
INIT_SCRIPT=$1 INIT_SCRIPT=$1
;; ;;
-H) -H|--existing-public-ip)
echo "-H option passed to use existing system public IP" echo "-H option passed to use existing system public IP"
shift shift
PublicIP=$1 PublicIP=$1
;; ;;
-P) -P|--existing-private-ip)
echo "-P option passed to use existing system private IP" echo "-P option passed to use existing system private IP"
shift shift
PrivateIP=$1 PrivateIP=$1
;; ;;
-U) -U|--ssh-username)
echo "-U option passed to provide username for connecting to existing system" echo "-U option passed to provide username for connecting to existing system"
shift shift
SSHUSER=$1 SSHUSER=$1
;; ;;
-k) -k|--ssh-keyfile)
echo "-k option passed to provide SSH key for connecting to existing system" echo "-k option passed to provide SSH key for connecting to existing system"
shift shift
SSHKEY=$1 SSHKEY=$1
;; ;;
-c) -c|--cloud-provider)
echo "-c option passed to specify cloud provider" echo "-c option passed to specify cloud provider"
shift shift
CLOUDPROVIDER=$1 CLOUDPROVIDER=$1
;; ;;
-T) -T|--no-terminate)
echo "-T option passed to prevent instance termination" echo "-T option passed to prevent instance termination"
TERMINATE_INSTANCE=false TERMINATE_INSTANCE=false
;; ;;
-q) -q|--quiet)
QUIET=true QUIET=true
;; ;;
-h) -h|--help)
echo "Usage:" echo "Usage:"
echo "k3d-dev.sh [options]" echo "k3d-dev.sh [options]"
echo "" echo ""
echo " -c CLOUD Use the given CLOUD for cloud infra provisioning [aws]" echo " -c|--cloud-provider CLOUD Use the given CLOUD for cloud"
echo " infra provisioning [aws]"
echo echo
echo "========= The following options ONLY APPLY with [-c aws] ==================" echo "========= The following options ONLY APPLY with [-c aws] =========="
echo echo
echo " -b use BIG M5 instance. Default is m5a.4xlarge" echo " -b|--big-instance use BIG M5 instance. Default is "
echo " -a attach secondary Public IP (overrides -p and -m flags)" echo " m5a.4xlarge"
echo " -d destroy related AWS resources" echo " -a|--attach-secondary-public-ip attach secondary Public IP"
echo " -R recreate the EC2 instance (shortcut for -d and running again with same flags)" echo " (overrides -p and -m flags)"
echo " -r Report on all instances owned by your user" echo " -d|--destroy-cloud-instance destroy related cloud resources"
echo " -u Update security group for instances" echo " -R|--recreate-cloud-instance recreate the cloud instance"
echo " (shortcut for -d and running "
echo " again with same flags)"
echo " -r|--report-cloud-instances Report on all cloud instances"
echo " owned by your user"
echo " -u|--update-cloud-instance Update security rules for "
echo " cloud instances"
echo echo
echo "========= These options apply regardless of cloud provider ================" echo "========= These options apply regardless of cloud provider ================"
echo echo
echo " -K recreate the k3d cluster on the host" echo " -K|--recreate-k3d recreate the k3d cluster on host"
echo " -m create k3d cluster with metalLB load balancer (this option is deprecated - this is now the default behavior)" echo " -m|--use-metallb create k3d cluster with metalLB"
echo " -M do NOT use a metalLB load balancer" echo " load balancer (default)"
echo " -p use private IP for security group and k3d cluster" echo " -M|--disable-metallb Don't use a metalLB load balancer"
echo " -t Set the project tag on the instance (for managing multiple instances)" echo " -p|--use-private-ip use private IP for security group"
echo " -w install the weave CNI instead of the default flannel CNI" echo " and k3d cluster"
echo " -i /path/to/script initialization script to pass to instance before configuring it" echo " -t|--project-tag Set the project tag on the cloud instance"
echo " -U username username to use when connecting to existing system in -P" echo " (for managing multiple instances)"
echo " -T Don't terminate the instance after 8 hours" echo " -w|--use-weave-cni install the weave CNI instead of the"
echo " -q suppress the final completion message" echo " default flannel CNI"
echo " -i|--init-script SCRIPTFILE initialization script to pass to"
echo " instance before configuring it"
echo " -U|--ssh-username USERNAME username to use when connecting"
echo " to existing system in -P (default"
echo " value depends on cloud provider,"
echo " no default value when using -H)"
echo " -T|--no-terminate Don't terminate the instance after"
echo " 8 hours"
echo " -q|--quiet suppress the final completion message"
echo echo
echo "========= These options override -c and use your own infrastructure =======" echo "========= These options override -c and use your own infrastructure ======="
echo echo
echo " -H xxx.xxx.xxx.xxx Public IP address of existing system to configure" echo " -H|--existing-public-ip IPADDR Public IP address of existing"
echo " -P xxx.xxx.xxx.xxx private IP address of existing system to configure (if not provided and -H is set, the value of -H is assumed)" echo " system to configure"
echo " -k /path/to/key/file SSH key to use when connecting to cluster instance" echo " -P|--existing-private-ip IPADDR Private IP address of existing"
echo " system to configure (if not provided"
echo " and -H is set, the value of -H is "
echo " assumed)"
echo " -k|--ssh-keyfile KEYFILE SSH key to use when connecting to "
echo " cluster instance"
echo echo
echo " -h output help" echo " -h|--help output this help"
exit 0 exit 0
;; ;;
-K) -K|--recreate-k3d)
RESET_K3D=true RESET_K3D=true
;; ;;
-R) -R|--recreate-cloud-instance)
CLOUD_RECREATE_INSTANCE=true CLOUD_RECREATE_INSTANCE=true
;; ;;
-u) -u|--update-cloud-instance)
action=update_instances action=update_instances
;; ;;
-r) -r|--report-cloud-instances)
action=report_instances action=report_instances
;; ;;
-w) -w|--use-weave-cni)
echo "-w option passed to use Weave CNI" echo "-w option passed to use Weave CNI"
USE_WEAVE=true USE_WEAVE=true
;; ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment