diff options
author | Azul <azul@riseup.net> | 2014-06-23 21:50:50 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2014-06-23 21:54:10 +0200 |
commit | 9cf230751b824d9134e710739520bc8deda14e8e (patch) | |
tree | de32d5fa2a44bfff9baa97c5ed581c94c8cd3527 /provider_base | |
parent | 0accf1788b9c7fef05e4436c5015d9099451be05 (diff) |
hand replication credentials to tapicero
Diffstat (limited to 'provider_base')
-rw-r--r-- | provider_base/services/_couchdb_mirror.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/provider_base/services/_couchdb_mirror.json b/provider_base/services/_couchdb_mirror.json index a496804d..6a3402bd 100644 --- a/provider_base/services/_couchdb_mirror.json +++ b/provider_base/services/_couchdb_mirror.json @@ -12,7 +12,10 @@ "replication": { // for now, pick the first close one, or the first one. // in the future, maybe use haproxy to balance among all the masters - "masters": "= try{pick_node(:couch_master,nodes_near_me['services' => 'couchdb']['couch.master' => true]).pick_fields('domain.internal', 'couch.port')} || try{pick_node(:couch_master,nodes_like_me['services' => 'couchdb']['couch.master' => true]).pick_fields('domain.internal', 'couch.port')}" + "masters": "= try{pick_node(:couch_master,nodes_near_me['services' => 'couchdb']['couch.master' => true]).pick_fields('domain.internal', 'couch.port')} || try{pick_node(:couch_master,nodes_like_me['services' => 'couchdb']['couch.master' => true]).pick_fields('domain.internal', 'couch.port')}", + "username": "replication", + "password": "= secret :couch_replication_password", + "role": "replication" } } -}
\ No newline at end of file +} |