问题本身
获得一个Azure 容器注册表作为图像和图表存储。假设它myacr.azurecr.io
推送了 8 个不同的图表。据我之前阅读,Azure ACR 能够存储图表并与Helm 3(版本 3.5.2)兼容。
helm repo add myacr https://myacr.azurecr.io/helm/v1/repo --username myusername -password admin123
- 回购添加。好的。helm chart save ./my-chart/ myacr.azurecr.io/helm/my-chart:1.0.0
- 图表已保存。好的helm push ./my-chart/ myacr.azurecr.io/helm/my-chart:1.0.0
- 推。在 Azure 门户中可用。好的。helm repo update
- 这里可能出了什么问题?正如预期的那样。好的
Hang tight while we grab the latest from your chart repositories...
...Successfully got an update from the "ingress-nginx" chart repository
...Successfully got an update from the "jetstack" chart repository
...Successfully got an update from the "myacr" chart repository
Update Complete. ⎈Happy Helming!⎈
helm search repo -l
- 我看到列表中的所有内容ingress-nginx
,jetstack
但没有看到任何内容myacr
。然而,如果我这样做pull
并且export
一切正常 - 图表就位
我试过的
- 根据网络上的一些理论将 repo 名称重命名为 helm/{app} - 失败
- 根据 -重新配置带有完整描述等的图表
ingress-nginx
- 失败 - 执行
helm search repo -l --devel
以查看所有可能的图表版本 - 不走运 - “开关再打开” - 使用不同的组合再次删除和添加 repo - 失败
- 每次尝试都使用明确的俚语 - 有点热身,但不能解决问题
问题是
- Azure ACR 是否与 Helm 3 完全兼容?
- 是否有任何特定的解决方法可以使其与 Helm 3 兼容?
- 搜索功能是否对图表结构或版本有任何要求?