When I try to install a chart with helm:
helm install stable/nginx-ingress --name my-nginx
I get the error:
Error: unknown flag: --name
But I see the above command format in many documentations.
Version:
version.BuildInfo{Version:"v3.0.0-beta.3", GitCommit:"5cb923eecbe80d1ad76399aee234717c11931d9a", GitTreeState:"clean", GoVersion:"go1.12.9"}
Platform: Windows 10 64
What could be the reason?
--name
flag fromhelm install
, or handle flag parsing differently? Most of the docs you're finding are for Helm v2 and they may not work with Helm v3. What output do you see if you runhelm install -h
? Does it show a--name
flag? Does it show that it still accepts flags at the end of the command? – Amit Kumar Guptahelm template
". In fact, doing a basic Internet search for the phraseHelm "unknown flag: --name"
brings up the same issue as the top result. – Amit Kumar Gupta