I installed the Halyard docker image on an Ubuntu 14.04 VM, created a Kubernetes Cluster in Azure AKS and deployed Spinnaker to it using hal deploy apply
.
Everything looks good and I can see the pods running via Kubernetes dashboard (by tunneling in the VM.)
az aks browse --resource-group SPIN --name AKS
However, I am unable to connect to the spinnaker UI at http://localhost:9000
via tunneling. This is what I did.
In my Ubuntu VM, started the Halyard container.
sudo docker run -p 8084:8084 -p 9000:9000 --name halyard --rm -v \ ~/.hal:/home/spinnaker/.hal -v ~/.kube:/home/spinnaker/.kube -d \ gcr.io/spinnaker-marketplace/halyard:stable
Connected to the container.
jaise@halyard:~$ sudo docker exec -it halyard bash
Configured Spinnaker and deployed to AKS
hal deploy apply
Ran
hal deploy connect
- which seems to verify everything and start a tunnelspinnaker@6e1e72124794:/workdir$ hal deploy connect + Get current deployment Success + Connect to Spinnaker deployment. Success Forwarding from 127.0.0.1:9000 -> 9000 Forwarding from 127.0.0.1:8084 -> 8084
I opened my browser in VM and hit
http://localhost:9000
but nothing comes. The message displayed is " The connection was reset"I Repeated the same steps from the putty session on my local workstation and received a similar error.
Any hint on where to look and what could be the issue?