Closed phughesion closed 1 year ago
Did you run nemesis-cli.py
before you ran into that?
Also, what Kubernetes flavor are you running? Minikube?
Did you run
nemesis-cli.py
before you ran into that?Also, what Kubernetes flavor are you running? Minikube?
Yes, I am running minikube. I have just been following setup.md.
I ran minikube stop && minikube start
after running nemesis-cli.py. I am not using slack and just trying to get the most minimal setup possible at the moment.
The only nemesis config step that was not as clear to me was nemesis_http_server, which I just set to http://127.0.0.1:5555. Is that just the interface/port you want to access nemesis from?
nemesis_http_server
is the frontend URL you access Nemesis from. If you're running it on VM, this will be the IP of the VM. The port must match ingress-nginx-controller
service's port in skaffold.yaml (port 8080 by default). FWIW, I just added an example config here.
If you want to post your Nemesis config (redact whatever you feel is necessary) I can take a look as well.
If that doesn't work, I'd start with a fresh minikube and try the following:
minikube delete # delete your current cluster
minikube start # start up minikube again
./nemesis-cli.py # Setup Nemesis configuration again
./scripts/pull_images.sh # Avoid any potential skaffold timeouts that may occur from image pulling taking a long time
skaffold build # Manually build everything
skaffold run --port-forward # Kick things off
If that doesn't work, I'll need some more details:
minikube delete # delete your current cluster minikube start # start up minikube again
./nemesis-cli.py # Setup Nemesis configuration again
That did the trick. Thank you.
./scripts/pull_images.sh # Avoid any potential skaffold timeouts that may occur from image pulling taking a long time skaffold build # Manually build everything
skaffold run --port-forward # Kick things off
Excellent! Working on updating the instructions to hopefully make things a bit clearer and some troubleshooting steps one can take. Thanks for the feedback!
Still working on startup. Different problem this time:
Let me know if there is more info required to properly debug. Thanks.