summaryrefslogtreecommitdiff
path: root/puppet/modules/site_webapp/manifests/couchdb.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-03-16 13:57:14 +0100
committervarac <varacanero@zeromail.org>2013-03-16 13:57:14 +0100
commita275999ab39b49afa2bb0c998c58aec424b4a8c0 (patch)
treeb61397115a9dab821417a6e8ec15bad71392c317 /puppet/modules/site_webapp/manifests/couchdb.pp
parent7c5f2117c8edb12304fb1221bc00e07b9734dff6 (diff)
pick the first couchdb host for webapp couch config
Until we have a proper load balancing setup (see https://leap.se/code/issues/1994)
Diffstat (limited to 'puppet/modules/site_webapp/manifests/couchdb.pp')
-rw-r--r--puppet/modules/site_webapp/manifests/couchdb.pp5
1 files changed, 4 insertions, 1 deletions
diff --git a/puppet/modules/site_webapp/manifests/couchdb.pp b/puppet/modules/site_webapp/manifests/couchdb.pp
index 6cac666f..9312cdb1 100644
--- a/puppet/modules/site_webapp/manifests/couchdb.pp
+++ b/puppet/modules/site_webapp/manifests/couchdb.pp
@@ -1,7 +1,10 @@
class site_webapp::couchdb {
$webapp = hiera('webapp')
- $couchdb_host = $webapp['couchdb_hosts']
+ $couchdb_hosts = $webapp['couchdb_hosts']
+ # for now, pick the first couchdb host before we have a working
+ # load balancing setup (see https://leap.se/code/issues/1994)
+ $couchdb_host = $couchdb_hosts[0]
$couchdb_user = $webapp['couchdb_user']['username']
$couchdb_password = $webapp['couchdb_user']['password']