It seems that the installation instructions are not valid for Helm 3
1 - helm install requires passing a name or explicitly setting autogenerate. Also, the --name has been deprecated and the first argument is used as name.
$ helm install stable/nginx-ingress --version 1.29.5
Error: must either provide a name or specify --generate-name
$ helm install stable/nginx-ingress --version 1.29.5 --name foo
Error: unknown flag: --name
2 - The stable repo is not enabled by default. That means that we should show instructions on how to add the repo even for stable/incubator
It seems that the installation instructions are not valid for Helm 3
1 - helm install requires passing a name or explicitly setting autogenerate. Also, the --name has been deprecated and the first argument is used as name.
2 - The stable repo is not enabled by default. That means that we should show instructions on how to add the repo even for stable/incubator