- add basic infra::incus role - add autossl, consul and ssh-principals for incus
11 lines
233 B
Puppet
11 lines
233 B
Puppet
# a role to deploy a incus node
|
|
class roles::infra::incus::node {
|
|
if $facts['firstrun'] {
|
|
include profiles::defaults
|
|
include profiles::firstrun::init
|
|
}else{
|
|
include profiles::defaults
|
|
include profiles::base
|
|
}
|
|
}
|