puppet-prod/site/roles/manifests/infra/incus/imagehost.pp
Ben Vincent c24babe309 feat: add incus image host (#254)
- add role
- add consul service + checks
- manage the datavol as zfs
- insure the incus fact exists before attempting to read it

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/254
2025-04-24 01:00:39 +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
}
}