- manage rke2 repos - add rke2 module (init, params, install, config, service) - exclude setting ips for cilium interfaces - split roles::infra::k8s::node -> control/compute roles - add bootstrap_node, manage server and token fields in rke2 config
10 lines
384 B
Puppet
10 lines
384 B
Puppet
# rke2 params
|
|
class rke2::params (
|
|
Enum['server', 'agent'] $node_type = 'agent',
|
|
Stdlib::Absolutepath $config_file = '/etc/rancher/rke2/config.yaml',
|
|
Hash $config_hash = {},
|
|
Stdlib::HTTPSUrl $join_url = 'https://127.0.0.1:9345',
|
|
Stdlib::Fqdn $bootstrap_node = 'localhost.localdomain',
|
|
String $node_token = '',
|
|
) {}
|