puppet-prod/site/roles/manifests/infra/k8s/worker.pp
Ben Vincent deae960cc1 feat: deploy k8s
- import k8s role
- add worker/controller roles
- add worker/controller profiles
2025-01-26 14:54:16 +11:00

12 lines
258 B
Puppet

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