feat: add a nomad agent v2 role (#293)

- excludes ceph (will be passed from incus)
- excludes frrouting (will use host-networking)

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/293
This commit was merged in pull request #293.
This commit is contained in:
2025-05-24 15:35:20 +10:00
parent 77d07672f8
commit 520e8a34e0
2 changed files with 67 additions and 0 deletions
@@ -0,0 +1,12 @@
# a role to deploy a nomad agent, second iteration
# using host based networking
class roles::infra::nomad::agentv2 {
if $facts['firstrun'] {
include profiles::defaults
include profiles::firstrun::init
}else{
include profiles::defaults
include profiles::base
include profiles::base::datavol
}
}