k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
436 B
18 lines
436 B
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
AZURE_RESOURCE_GROUP="$1"
|
|
|
|
if [ "$AZURE_RESOURCE_GROUP" == "" ]; then
|
|
echo "AZURE_RESOURCE_GROUP is missing"
|
|
exit 1
|
|
fi
|
|
|
|
if az &>/dev/null; then
|
|
echo "azure cli 2.0 found, using it instead of 1.0"
|
|
./clear-rg_2.sh "$AZURE_RESOURCE_GROUP"
|
|
else
|
|
ansible-playbook generate-templates.yml
|
|
azure group deployment create -g "$AZURE_RESOURCE_GROUP" -f ./.generated/clear-rg.json -m Complete
|
|
fi
|