Module: R10K::Settings
- Defined in:
- lib/r10k/settings.rb,
lib/r10k/settings/list.rb,
lib/r10k/settings/loader.rb,
lib/r10k/settings/helpers.rb,
lib/r10k/settings/collection.rb,
lib/r10k/settings/definition.rb,
lib/r10k/settings/uri_definition.rb,
lib/r10k/settings/enum_definition.rb
Defined Under Namespace
Modules: Helpers, Mixin Classes: Collection, Container, Definition, EnumDefinition, List, Loader, URIDefinition
Class Attribute Summary collapse
-
.puppet_conf ⇒ Object
Path to puppet.conf.
-
.puppet_path ⇒ Object
Path to puppet executable.
Class Method Summary collapse
- .deploy_settings ⇒ Object
- .forge_settings ⇒ Object
- .git_settings ⇒ Object
- .global_settings ⇒ Object
- .logging_settings ⇒ Object
Class Attribute Details
.puppet_conf ⇒ Object
Path to puppet.conf
16 17 18 |
# File 'lib/r10k/settings.rb', line 16 def puppet_conf @puppet_conf end |
.puppet_path ⇒ Object
Path to puppet executable
14 15 16 |
# File 'lib/r10k/settings.rb', line 14 def puppet_path @puppet_path end |
Class Method Details
.deploy_settings ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/r10k/settings.rb', line 150 def self.deploy_settings R10K::Settings::Collection.new(:deploy, [ Definition.new(:write_lock, { :desc => "Whether r10k deploy actions should be locked out in case r10k is being managed by another application. The value should be a string containing the reason for the write lock.", :validate => lambda do |value| if value && !value.is_a?(String) raise ArgumentError, "The write_lock setting should be a string containing the reason for the write lock, not a #{value.class}" end end }), EnumDefinition.new(:purge_levels, { :desc => "Controls how aggressively r10k will purge unmanaged content from the target directory. Should be a list of values indicating at what levels unmanaged content should be purged. Options are 'deployment', 'environment', and 'puppetfile'. For backwards compatibility, the default is ['deployment', 'puppetfile'].", :multi => true, :enum => [:deployment, :environment, :puppetfile], :default => [:deployment, :puppetfile], :normalize => lambda do |input| if input.respond_to?(:collect) input.collect { |val| val.to_sym } else # Convert single values to a list of one symbolized value. [input.to_sym] end end, }), Definition.new(:purge_allowlist, { :desc => "A list of filename patterns to be excluded from any purge operations. Patterns are matched relative to the root of each deployed environment, if you want a pattern to match recursively you need to use the '**' glob in your pattern. Basic shell style globs are supported.", :default => [], }), Definition.new(:generate_types, { :desc => "Controls whether to generate puppet types after deploying an environment. Defaults to false.", :default => false, :normalize => lambda do |input| input.to_s == 'true' end, }), Definition.new(:puppet_path, { :desc => "Path to puppet executable. Defaults to /opt/puppetlabs/bin/puppet.", :default => '/opt/puppetlabs/bin/puppet', :validate => lambda do |value| unless File.executable? value raise ArgumentError, "The specified puppet executable #{value} is not executable" end end }), Definition.new(:puppet_conf, { :desc => "Path to puppet.conf. Defaults to /etc/puppetlabs/puppet/puppet.conf.", :default => '/etc/puppetlabs/puppet/puppet.conf', :validate => lambda do |value| unless File.readable? value raise ArgumentError, "The specified puppet.conf #{value} is not readable" end end }), Definition.new(:exclude_spec, { :desc => "Whether or not to deploy the spec dir of a module. Defaults to true.", :default => true, :validate => lambda do |value| unless !!value == value raise ArgumentError, "`exclude_spec` can only be a boolean value, not '#{value}'" end end })]) end |
.forge_settings ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/r10k/settings.rb', line 123 def self.forge_settings R10K::Settings::Collection.new(:forge, [ URIDefinition.new(:proxy, { :desc => "An optional proxy server to use when downloading modules from the forge.", :default => :inherit, }), URIDefinition.new(:baseurl, { :desc => "The URL to the Puppet Forge to use for downloading modules." }), Definition.new(:authorization_token, { :desc => "The token for Puppet Forge authorization. Leave blank for unauthorized or license-based connections." }), Definition.new(:allow_puppetfile_override, { :desc => "Whether to use `forge` declarations in the Puppetfile as an override of `baseurl`.", :default => false, :validate => lambda do |value| unless !!value == value raise ArgumentError, "`allow_puppetfile_override` can only be a boolean value, not '#{value}'" end end }) ]) end |
.git_settings ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/r10k/settings.rb', line 19 def self.git_settings R10K::Settings::Collection.new(:git, [ Definition.new(:default_ref, { :desc => "User-defined default ref from which to deploy modules when not otherwise specified; nil unless configured via the r10k.yaml config.", :default => nil}), EnumDefinition.new(:provider, { :desc => "The Git provider to use. Valid values: 'shellgit', 'rugged'", :normalize => lambda { |input| input.to_sym }, :enum => [:shellgit, :rugged], }), Definition.new(:username, { :desc => "The username to use for Git SSH remotes that do not specify a user. Only used by the 'rugged' Git provider. Default: the current user", :default => lambda { Etc.getlogin }, }), Definition.new(:private_key, { :desc => "The path to the SSH private key for Git SSH remotes. Only used by the 'rugged' Git provider.", }), Definition.new(:oauth_token, { :desc => "The path to a token file for Git OAuth remotes. Only used by the 'rugged' Git provider." }), Definition.new(:github_app_id, { :desc => "The Github App id for Git SSL remotes. Only used by the 'rugged' Git provider." }), Definition.new(:github_app_key, { :desc => "The Github App private key for Git SSL remotes. Only used by the 'rugged' Git provider." }), Definition.new(:github_app_ttl, { :desc => "The ttl expiration for SSL tokens. Only used by the 'rugged' Git provider.", :default => "120", }), URIDefinition.new(:proxy, { :desc => "An optional proxy server to use when interacting with Git sources via HTTP(S).", :default => :inherit, }), List.new(:repositories, lambda { R10K::Settings::Collection.new(nil, [ Definition.new(:remote, { :desc => "Remote source that repository-specific settings should apply to.", }), Definition.new(:private_key, { :desc => "The path to the SSH private key for Git SSH remotes. Only used by the 'rugged' Git provider.", :default => :inherit, }), Definition.new(:oauth_token, { :desc => "The path to a token file for Git OAuth remotes. Only used by the 'rugged' Git provider.", :default => :inherit }), Definition.new(:github_app_id, { :desc => "The Github App id for Git SSL remotes. Only used by the 'rugged' Git provider.", :default => :inherit }), Definition.new(:github_app_key, { :desc => "The Github App private key for Git SSL remotes. Only used by the 'rugged' Git provider.", :default => :inherit }), Definition.new(:github_app_ttl, { :desc => "The ttl expiration for Git SSL tokens. Only used by the 'rugged' Git provider.", :default => :inherit }), URIDefinition.new(:proxy, { :desc => "An optional proxy server to use when interacting with Git sources via HTTP(S).", :default => :inherit, }), Definition.new(:ignore_branch_prefixes, { :desc => "Array of strings used to prefix branch names that will not be deployed as environments.", }), ]) }, { :desc => "Repository specific configuration.", :default => [], }), ]) end |
.global_settings ⇒ Object
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
# File 'lib/r10k/settings.rb', line 252 def self.global_settings R10K::Settings::Collection.new(:global, [ Definition.new(:sources, { :desc => "Where r10k should retrieve sources when deploying environments. Only used for r10k environment deployment.", }), Definition.new(:purgedirs, { :desc => "The purgedirs setting was deprecated in r10k 1.0.0 and is no longer respected.", }), Definition.new(:cachedir, { :desc => "Where r10k should store cached Git repositories.", }), Definition.new(:postrun, { :desc => "The command r10k should run after deploying environments or modules.", :validate => lambda do |value| if !value.is_a?(Array) raise ArgumentError, "The postrun setting should be an array of strings, not a #{value.class}" end end }), Definition.new(:pool_size, { :desc => "The amount of threads used to concurrently install modules. The default value is 1: install one module at a time.", :default => 4, :validate => lambda do |value| if !value.is_a?(Integer) raise ArgumentError, "The pool_size setting should be an integer, not a #{value.class}" end if !(value > 0) raise ArgumentError, "The pool_size setting should be greater than zero." end end }), URIDefinition.new(:proxy, { :desc => "Proxy to use for all r10k operations which occur over HTTP(S).", :default => lambda { [ ENV['HTTPS_PROXY'], ENV['https_proxy'], ENV['HTTP_PROXY'], ENV['http_proxy'] ].find { |value| value } }, }), R10K::Settings.forge_settings, R10K::Settings.git_settings, R10K::Settings.deploy_settings, R10K::Settings.logging_settings ]) end |
.logging_settings ⇒ Object
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/r10k/settings.rb', line 219 def self.logging_settings R10K::Settings::Collection.new(:logging, [ Definition.new(:level, { desc: 'What logging level should R10k run on if not specified at runtime.', validate: lambda do |value| if R10K::Logging.parse_level(value).nil? raise ArgumentError, "`level` must be a valid log level. Valid levels are #{R10K::Logging::LOG_LEVELS.map(&:downcase).inspect}" end end }), Definition.new(:outputs, { desc: 'Additional log outputs to use.', validate: lambda do |value| unless value.is_a?(Array) raise ArgumentError, "The `outputs` setting should be an array of outputs, not a #{value.class}" end end }), Definition.new(:disable_default_stderr, { desc: 'Disable the default stderr logging output', default: false, validate: lambda do |value| unless !!value == value raise ArgumentError, "`disable_default_stderr` can only be a boolean value, not '#{value}'" end end }) ]) end |