Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在管道代码中使用 azure-cli 命令将图表推送到 azure 容器注册表,例如:
az acr helm push -n ${ACR} ${1}-${2}.tgz
另外,我可以查询图表:图表版本:
az acr helm list --name ${ACR} --query "length(\"${1}\"[?version == '${2}'])
上面的例子是基于helm2,很快就会被弃用。如何使用 helm3 命令获得相同的结果?
谢谢