Installed spinnaker via halyard on ubuntu 14.04 machine using the commands below.
hal version list
VERSION=1.4.2
hal config version edit --version $VERSION
sudo hal deploy apply
hal deploy connect
but deck is not listening at port 9000, netstat -l does not show port 9000. Checked the spinnaker logs and they aren't any errors.
although the /opt/spinnaker/config/spinnaker.yml has the right configuration for deck
deck:
port: 9000
address: localhost
host: localhost
scheme: http
env: {}
artifactId: spinnaker-deck=1.6.2-20171002182452
kubernetes:
imagePullSecrets: []
enabled: true
monitored: false
sidecar: false
safeToUpdate: true
targetSize: 1
skipLiveCycleManagement: false
baseUrl: http://localhost:9000
Also the apache2/port.conf has this
Listen localhost:9000
Is there a way to find out what went wrong and bring the deck up?