feat: continue incus implementation (#245)

- migrate to systemd-networkd
- setup dummy, bridge and static/ethernet interfaces
- manage sshd.service droping to start ssh after networking is online
- enable ip forewarding
- add fastpool/data/incus dataset
- enable ospf and frr
- add loopback0 as ssh listenaddress
- add loopback1/2 for ceph cluster/public traffic

Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/245
This commit was merged in pull request #245.
This commit is contained in:
2025-04-06 16:38:04 +10:00
parent 06666fe488
commit c225564bdb
17 changed files with 310 additions and 51 deletions
+1
View File
@@ -33,6 +33,7 @@ class profiles::base (
include profiles::pki::vault
include profiles::ssh::sign
include profiles::ssh::knownhosts
include profiles::ssh::service
include profiles::cloudinit::init
include profiles::metrics::default
include profiles::helpers::node_lookup
+15
View File
@@ -0,0 +1,15 @@
# profiles::ssh::service
# saz-ssh manages the service, this is just some additional stuff
class profiles::ssh::service {
# set sshd to start
systemd::manage_dropin { 'after-network-online.conf':
ensure => present,
unit => 'sshd.service',
unit_entry => {
'After' => [
'network-online.target',
],
},
}
}