puppet-prod/site/roles/manifests/infra/incus/imagehost.pp
Ben Vincent 06c20157ed feat: add incus image host
- add role
- add consul service + checks
- manage the datavol as zfs
- insure the incus fact exists before attempting to read it
2025-04-21 16:46:23 +10:00

11 lines
246 B
Puppet

# a role to deploy a incus image server
class roles::infra::incus::imagehost {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
}
}