learn-bosh
learn-bosh copied to clipboard
Instructions not clear to add servers properties
In the last step of "Debugging failing deploy"
"Let's add a property to router job to specify our servers pointing to their static IPs and ports ("http://10.244.0.2:8888", "http://10.244.0.6:8888"), re-deploy and see it succeeds."
took me a while to figure out the proper syntax to add the servers property and values. It would be nice if someone add the proper configuration example.
That's the one that's working for me:
`- name: router
templates:
- name: router
instances: 1
resource_pool: default
networks:
- name: default static_ips: [10.244.0.10] properties: servers: ["http://10.244.0.2:8888","http://10.244.0.6:8888"]`
Maybe here a bosh link could be used instead of hardcoding the IPs/Ports.