When I try to install a chart with helm:helm install stable/nginx-ingress --name my-nginxI get the error: But I see the above command format in many documentations.Version: Platform: Windows 10 64What could be the reason? 解决方案 In Helm v3, the release name is now mandatory as part of the commmand, see helm install --help:Your command should be:helm install my-nginx stable/nginx-ingressFurthermore, Helm will not auto-generate names for releases anymore. If you want the "old behavior", you can use the --generate-name flag. e.g:helm install --generate-name stable/nginx-ingressThe v3 docs are available at https://v3.helm.sh/docs/, but as it is a beta version, the docs will not be accurate for a while. It's better to rely on the CLI --help, that is auto-generated by Go/Cobra. 这篇关于头盔安装未知标志--name的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-01 21:42