puppet-prod/site/roles/manifests/infra/k8s/etcd.pp
Ben Vincent e9978484f6 feat: add ectd role for k8s
- small updates to k8s server/node/etcd-replica
- change k8s networking to all use networkd
2025-05-30 22:55:04 +10:00

12 lines
256 B
Puppet

# deploy k8s workers
class roles::infra::k8s::etcd {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
include profiles::base::datavol
}
}