- excludes ceph (will be passed from incus) - excludes frrouting (will use host-networking) Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/293
13 lines
321 B
Puppet
13 lines
321 B
Puppet
# 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
|
|
}
|
|
}
|