Helm:未找到图表版本

问题描述 投票:0回答:1

即使图表存在,我仍然收到类似的错误。这不是 SemV2 版本吗?

错误:

The helm deployment failed because: Error: chart "ap983546-test-api" matching 2.0.0-featureesp2606-8 not found in artifactory index. (try 'helm repo update'): no chart version found for ap983546-test-api-2.0.0-featureesp2606-8

命令然:

helm upgrade ap983546-test-api artifactory/ap983546-test-api --set liveSlot=blue,blue.enabled=false,blueImage.tag=2.0.0-featureesp2606-6,greenImage.tag=2.0.0-featureesp2606-8 --wait -f charts/ap983546-test-api/values_rks.yaml --version 2.0.0-featureesp2606-8 --install
kubernetes kubernetes-helm
1个回答
0
投票

错误信息表示helm图表的版本不存在。要检查 helm 图表中的图表版本,您可以尝试运行命令

helm search repo <repo_name>/<chart_name>
-l。该命令将列出您想要安装的所有图表版本,并可以帮助您安装所需的版本

© www.soinside.com 2019 - 2024. All rights reserved.