Commit d8cd85c8 by Bilal

addressing comments

parent 98853e12
...@@ -48,3 +48,12 @@ harstorage_python_pkgs: ...@@ -48,3 +48,12 @@ harstorage_python_pkgs:
- { name: "pymongo", version: "2.8"} - { name: "pymongo", version: "2.8"}
harstorage_redhat_pkgs: [] harstorage_redhat_pkgs: []
harstorage_port: "5000"
harstorage_host: "127.0.0.1"
harstorage_version: "1.0"
# mongo packages
mongo_port: "27017"
mongo_repl_set: "repl1"
mongo_admin_user: "admin"
mongo_admin_password: "admin"
...@@ -8,8 +8,8 @@ debug = false ...@@ -8,8 +8,8 @@ debug = false
[server:main] [server:main]
use = egg:Paste#http use = egg:Paste#http
host = 127.0.0.1 host = {{ harstorage_host }}
port = 5000 port = {{ harstorage_port }}
[app:main] [app:main]
use = egg:harstorage use = egg:harstorage
...@@ -18,17 +18,16 @@ static_files = true ...@@ -18,17 +18,16 @@ static_files = true
temp_store = %(here)s/data temp_store = %(here)s/data
bin_store = %(here)s bin_store = %(here)s
ps_enabled = true ps_enabled = true
static_version = 1.0 static_version = {{ harstorage_version }}
mongo_replicate = false mongo_replicate = false
mongo_replset = repl1 mongo_replset = {{ mongo_repl_set }}
mongo_host = localhost mongo_host = localhost
mongo_port = 27017 mongo_port = {{ mongo_port }}
mongo_db = harstorage mongo_db = {{ harstorage_role_name }}
mongo_auth = false mongo_auth = false
mongo_user = admin mongo_user = {{ mongo_admin_user }}
mongo_pswd = admin mongo_pswd = {{ mongo_admin_password }}
cache_dir = %(here)s/data cache_dir = %(here)s/data
beaker.session.key = harstorage beaker.session.key = harstorage
beaker.session.secret = somesecret beaker.session.secret = somesecret
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment