Install cycle in private environment

This commit is contained in:
AlexandreJean 2020-04-04 15:52:59 +02:00 коммит произвёл GitHub
Родитель 32d0809b76
Коммит 4414a856ac
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -70,8 +70,8 @@ if [ "$fqdn" != "" ]; then
--output table
source_vm=$fqdn
else
#case if no FQDN for cycleserver VM and then run a remote ssh from the VM install_from
fqdn=$(az network private-dns record-set list -g ${resource_group} -z ${dns_domain} --query "[?name=='${vmname}']" -o yaml | grep fqdn | awk -F " " '{print $2}')
#fqdn=${fqdn::-1}
source_vm=$(
az network public-ip show \
--resource-group $resource_group \
@ -79,6 +79,11 @@ else
--output tsv \
2>/dev/null \
)
#case if source_vm don't have a publicIP
if [ -z "$source_vm" ]
then
source_vm=$fqdn
fi
fi
echo "Creating storage account $projectstore for projects"