Created
January 19, 2012 00:09
-
-
Save mpage/1636668 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class VCAP::Stager::Config < VCAP::Config | |
DEFAULT_CONFIG_PATH = File.expand_path('../../../../config/dev.yml', __FILE__) | |
define_schema do | |
{ :logging => { | |
:level => String, # debug, info, etc. | |
optional(:file) => String, # Log file to use | |
optional(:syslog) => String, # Name to associate with syslog messages (should start with 'vcap.') | |
}, | |
:nats_uri => String, # NATS uri of the form nats://<user>:<pass>@<host>:<port> | |
:max_staging_duration => Integer, # Maximum number of seconds a staging can run | |
:max_active_tasks => Integer, # Maximum number of tasks executing concurrently | |
:queues => [String], # List of queues to pull tasks from | |
:pid_filename => String, # Pid filename to use | |
optional(:dirs) => { | |
optional(:manifests) => String, # Where all of the staging manifests live | |
optional(:tmp) => String, # Default is /tmp | |
}, | |
:secure => VCAP::JsonSchema::BoolSchema.new, | |
optional(:index) => Integer, # Component index (stager-0, stager-1, etc) | |
optional(:ruby_path) => String, # Full path to the ruby executable that should execute the run plugin script | |
optional(:local_route) => String, # If set, use this to determine the IP address that is returned in discovery messages | |
optional(:run_plugin_path) => String, # Full path to run plugin script | |
} | |
end | |
def self.from_file(*args) | |
config = super(*args) | |
config[:dirs] ||= {} | |
config[:dirs][:manifests] ||= StagingPlugin::DEFAULT_MANIFEST_ROOT | |
config[:run_plugin_path] ||= File.expand_path('../../../../bin/run_plugin', __FILE__) | |
config[:ruby_path] ||= `which ruby`.chomp | |
config | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment