diff options
author | James E. Blair <jeblair@redhat.com> | 2017-06-23 20:56:05 +0100 |
---|---|---|
committer | James E. Blair <jeblair@redhat.com> | 2017-07-05 14:42:47 -0700 |
commit | fdb111d7a5269b92be536c1ba29d81a145c51708 (patch) | |
tree | 6cff17a948a51c97ec7460fd626722562b30dacf /etc/zuul.conf-sample | |
parent | d1de94640314b7b3a0f28dd5e04e39598a0633bb (diff) | |
download | zuul-fdb111d7a5269b92be536c1ba29d81a145c51708.tar.gz |
Move zookeeper_hosts to zookeeper section
To anticipate future use of zookeeper by more than just the scheduler,
create a new 'zookeeper' section in zuul.conf similar to the 'gearman'
section. The 'hosts' entry is the only setting there now, but others
may be added later.
Change-Id: Ib0bb2dfdc96fa0eb4aad2b4700de2f2004ea15f2
Diffstat (limited to 'etc/zuul.conf-sample')
-rw-r--r-- | etc/zuul.conf-sample | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/zuul.conf-sample b/etc/zuul.conf-sample index 9d74a3b21..48f23a5a7 100644 --- a/etc/zuul.conf-sample +++ b/etc/zuul.conf-sample @@ -4,6 +4,9 @@ server=127.0.0.1 ;ssl_cert=/path/to/client.pem ;ssl_key=/path/to/client.key +[zookeeper] +hosts=127.0.0.1:2181 + [gearman_server] start=true ;ssl_ca=/path/to/ca.pem @@ -12,7 +15,6 @@ start=true [zuul] status_url=https://zuul.example.com/status -zookeeper_hosts=127.0.0.1:2181 [scheduler] tenant_config=/etc/zuul/main.yaml |