You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 15, 2018. It is now read-only.
hello
i keep getting the error posted below . what needs to be done ?
minikube service --namespace=monitoring prometheus
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
The text was updated successfully, but these errors were encountered:
Hi,
I face the same issue as @dimthe but taking a look to the output of "minikube logs" and to demo-script.sh file I found that my problem was that I didn't follow a step, if you find instructions in README you get the message "Waiting, endpoint for service is not ready yet...". To fix it I run this:
$ kubectl delete service prometheus --namespace=monitoring
service "prometheus" deleted
$ kubectl delete deployment prometheus --namespace=monitoring
deployment.extensions "prometheus" deleted
$ kubectl get deployments --namespace=monitoring
No resources found.
Once all previous steps are been undone, execute the missing step:
$ kubectl create -f prometheus-config.yaml
$ kubectl apply -f prometheus-deployment.yaml (I had problems executing kubectl create...)
$ kubectl create -f prometheus-service.yaml
And you can run:
$ minikube service --namespace=monitoring prometheus
And everything was fine this time.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
hello
i keep getting the error posted below . what needs to be done ?
minikube service --namespace=monitoring prometheus
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
Waiting, endpoint for service is not ready yet...
The text was updated successfully, but these errors were encountered: