9e1968b1be
ci/woodpecker/pr/ruby-validate Pipeline was successful
ci/woodpecker/pr/puppet-lint Pipeline was successful
ci/woodpecker/pr/yamllint Pipeline was successful
ci/woodpecker/pr/bolt-validate Pipeline was successful
ci/woodpecker/pr/erb-validate Pipeline was successful
ci/woodpecker/pr/epp-validate Pipeline was successful
ci/woodpecker/pr/puppet-validate Pipeline was successful
ci/woodpecker/pr/ruby-check Pipeline was successful
- Replace static registries.yaml with EPP template driven by rke2::registries hash - Add disable-default-registry-endpoint: true to all mirrors - Add docker.litellm.ai and public.ecr.aws registries - Registry configuration now managed via hiera data in roles/infra/k8s.yaml
26 lines
1.2 KiB
Puppet
26 lines
1.2 KiB
Puppet
# manage rke2
|
|
class rke2 (
|
|
Enum['server', 'agent'] $node_type = $rke2::params::node_type,
|
|
String $rke2_version = $rke2::params::rke2_version,
|
|
String $rke2_release = $rke2::params::rke2_release,
|
|
Stdlib::Absolutepath $config_file = $rke2::params::config_file,
|
|
Hash $config_hash = $rke2::params::config_hash,
|
|
Stdlib::HTTPSUrl $join_url = $rke2::params::join_url,
|
|
Stdlib::Fqdn $bootstrap_node = $rke2::params::bootstrap_node,
|
|
String $node_token = $rke2::params::node_token,
|
|
Boolean $helm_install = $rke2::params::helm_install,
|
|
Hash $helm_repos = $rke2::params::helm_repos,
|
|
Array[String[1]] $extra_config_files = $rke2::params::extra_config_files,
|
|
Stdlib::HTTPUrl $container_archive_source = $rke2::params::container_archive_source,
|
|
Boolean $manage_registries = $rke2::params::manage_registries,
|
|
Hash $registries = $rke2::params::registries,
|
|
) inherits rke2::params {
|
|
|
|
include rke2::install
|
|
include rke2::config
|
|
include rke2::service
|
|
include rke2::helm
|
|
|
|
Class['rke2::install'] -> Class['rke2::service'] -> Class['rke2::helm']
|
|
}
|