gpt4 book ai didi

Azure DevOps 中的 Azure 清除脚本

转载 作者:行者123 更新时间:2023-12-03 23:51:59 24 4
gpt4 key购买 nike

我们正在将 Web 应用程序部署到 Azure CDN,但每次我们都需要等待相当长的时间才能更新应用程序。所以我们发现有一个“清除”按钮,这似乎有效。清除后我们必须等待大约 5 分钟。

现在我们希望每次发布应用程序时都运行它,因此我们使用以下脚本向 vsts 添加了一个任务:

az cdn endpoint purge --resource-group $1 --profile-name $3 --name $4 --content-paths /*

带参数:$(ResourceGroup) $(StorageAccountName) $(ProfileName) $(EndpointName)

但这并不是每次都有效,似乎有时它可以工作,5 分钟后应用程序就会更新,但有时我们必须等待 30 分钟左右。

最佳答案

添加 --no-wait 参数以避免等待操作完成。

az cdn endpoint purge --resource-group $1 --profile-name $3 --name $4 --no-wait --content-paths /*

--no-wait

Do not wait for the long-running operation to finish.

https://learn.microsoft.com/en-us/cli/azure/cdn/endpoint?view=azure-cli-latest#optional-parameters

关于Azure DevOps 中的 Azure 清除脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56270628/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com