2015-07-16 13:19:33 +03:00
|
|
|
# path to log dir
|
2018-04-04 22:44:39 +03:00
|
|
|
config[:log_dir] = "/tmp"
|
2014-05-08 15:34:26 +04:00
|
|
|
# path to chef knife.rb file
|
|
|
|
|
config[:knife_config_file] = "/path/to/.chef/knife.rb"
|
|
|
|
|
# role name separator
|
|
|
|
|
config[:role_separator] = "_"
|
|
|
|
|
|
|
|
|
|
# mongodb settings
|
2018-04-04 22:44:39 +03:00
|
|
|
config[:db_config] = "./config/mongo.yml"
|
2014-12-12 13:22:42 +03:00
|
|
|
#config[:mongo_user] = "user"
|
|
|
|
|
#config[:mongo_password] = "pass"
|
2014-05-08 15:34:26 +04:00
|
|
|
|
|
|
|
|
# devops port
|
|
|
|
|
config[:port] = 7070
|
|
|
|
|
|
|
|
|
|
# path to devops-client.gem file
|
|
|
|
|
config[:client_file] = "/path/to/public/devops-client.gem"
|
|
|
|
|
# path to devops public directory
|
|
|
|
|
config[:public_dir] = "/path/to/public"
|
|
|
|
|
|
2018-04-04 22:44:39 +03:00
|
|
|
config[:providers] = ["aws", "openstack", "static"]
|
2015-02-12 13:30:49 +03:00
|
|
|
|
|
|
|
|
config[:debug] = true
|
2015-07-13 18:55:41 +03:00
|
|
|
|
|
|
|
|
# set it to :all or [:ec2] to stub calls to selected providers
|
|
|
|
|
# or to false to disable stubbing
|
2018-04-04 22:44:39 +03:00
|
|
|
config[:stub_providers] = false
|