open-nomad/demo/vagrant/client2.hcl
Ben e801af74cf Make example clients generate random HostIDs
The tutorial has you make two clients on the same Vagrant box, so they
end up with the same secret ID.

Fixes #2661.
2017-05-21 19:20:32 -04:00

34 lines
640 B
HCL

# Increase log verbosity
log_level = "DEBUG"
# Setup data dir
data_dir = "/tmp/client2"
# Enable the client
client {
enabled = true
no_host_uuid = true
# For demo assume we are talking to server1. For production,
# this should be like "nomad.service.consul:4647" and a system
# like Consul used for service discovery.
servers = ["127.0.0.1:4647"]
# Set ourselves as thing one
meta {
ssd = "true"
}
no_host_uuid = true
}
# Modify our port to avoid a collision with server1 and client1
ports {
http = 5657
}
advertise {
http = "localhost"
rpc = "localhost"
serf = "localhost"
}