Validate the Kamal configuration giving useful warning on errors. Each section of the configuration has its own config class and a YAML file containing documented example configuration. You can run `kamal docs` to see the example configuration, and `kamal docs <section>` to see the example configuration for a specific section. The validation matches the configuration to the example configuration checking that there are no unknown keys and that the values are of matching types. Where there is more complex validation - e.g for envs and servers, we have custom validators that implement those rules. Additonally the configuration examples are used to generate the configuration documentation in the kamal-site repo. You generate them by running: ``` bundle exec bin/docs <kamal-site-checkout> ```
23 lines
430 B
Ruby
23 lines
430 B
Ruby
class Kamal::Configuration::Sshkit
|
|
include Kamal::Configuration::Validation
|
|
|
|
attr_reader :sshkit_config
|
|
|
|
def initialize(config:)
|
|
@sshkit_config = config.raw_config.sshkit || {}
|
|
validate! sshkit_config
|
|
end
|
|
|
|
def max_concurrent_starts
|
|
sshkit_config.fetch("max_concurrent_starts", 30)
|
|
end
|
|
|
|
def pool_idle_timeout
|
|
sshkit_config.fetch("pool_idle_timeout", 900)
|
|
end
|
|
|
|
def to_h
|
|
sshkit_config
|
|
end
|
|
end
|