CircleCi - Azure Cli - 部署失败
CircleCi - Azure Cli - Deployment fails
我正在尝试使用 circleci and a config.yml
file using azuresdk/azure-cli-python
from Docker Hub 部署到 Azure。
我可以登录到 Azure,设置我的订阅,但是随后的行失败了,没有太多信息。
#!/bin/bash -eo pipefail
az group deployment create -g Preproduction --template-file FactureResourceGroup.json --parameters FactureParametersPreproduction.json --parameters oAuthSecret=$OAUTH_SECRET
malformed node or string: <_ast.Name object at 0x7f2e08b6ef28>
Exited with code 1
根据错误日志malformed node or string:
,您似乎使用了旧版本的 Azure CLI。
az -v
最新版本为2.0.22。如果您不使用最新版本,我建议您可以使用以下命令升级它。
sudo apt-get update && sudo apt-get upgrade
类似的请参考。
我正在尝试使用 circleci and a config.yml
file using azuresdk/azure-cli-python
from Docker Hub 部署到 Azure。
我可以登录到 Azure,设置我的订阅,但是随后的行失败了,没有太多信息。
#!/bin/bash -eo pipefail
az group deployment create -g Preproduction --template-file FactureResourceGroup.json --parameters FactureParametersPreproduction.json --parameters oAuthSecret=$OAUTH_SECRET
malformed node or string: <_ast.Name object at 0x7f2e08b6ef28>
Exited with code 1
根据错误日志malformed node or string:
,您似乎使用了旧版本的 Azure CLI。
az -v
最新版本为2.0.22。如果您不使用最新版本,我建议您可以使用以下命令升级它。
sudo apt-get update && sudo apt-get upgrade
类似的请参考