I'm trying to install
[ec2-user@ip-*********** ~]$ helm install stable/prometheus-operator --generate-name
Error: failed to download "stable/prometheus-operator" (hint: running `helm repo update` may help)
And also installing the monitoring doesn't work :
helm install monitoring --namespace monitoring stable/prometheus-operator
Produces :
[ec2-user@ip-&&&&&&&&&&& ~]$ helm install monitoring --namespace monitoring
Error: must either provide a name or specify --generate-name
[ec2-user@ip-&&&&&&&&&&& ~]$ helm install monitoring --namespace monitoring --generate-name
Error: failed to download "monitoring" (hint: running `helm repo update` may help)
Any idea how to solve this ?
You are slightly missing the syntax: try
Here
--name
mean name of helm deployment, andstable/prometheus-operator
is helm chart to be used.