switch buxtehude to more puppetized pg backups
[mirror/dsa-puppet.git] / modules / ganeti2 / manifests / init.pp
index 3e017b3..2d80c9d 100644 (file)
@@ -1,76 +1,33 @@
+# = Class: ganeti2
+#
+# Standard ganeti2 config debian.org hosts
+#
+# == Sample Usage:
+#
+#   include ganeti2
+#
 class ganeti2 {
 
-       package { 'ganeti2':
-               ensure => installed
-       }
+       include ganeti2::params
+       include ganeti2::firewall
 
-       package { 'drbd8-utils':
-               ensure => installed
-       }
+       $drbd = $ganeti2::params::drbd
 
-       package { 'ganeti-instance-debootstrap':
+       package { 'ganeti':
                ensure => installed
        }
 
-       package { 'ganeti-htools':
-               ensure => installed
-       }
-
-       @ferm::rule { 'dsa-ganeti-noded-v4':
-               description => 'allow ganeti-noded communication between',
-               rule        => 'proto tcp mod state state (NEW) dport (1811) @subchain \'ganeti-noded\' { saddr ($HOST_GANETI_V4) daddr ($HOST_GANETI_V4) ACCEPT; }',
-               notarule    => true,
-       }
+       site::linux_module { 'tun': }
 
-       @ferm::rule { 'dsa-ganeti-confd-v4':
-               description => 'allow ganeti-confd communication',
-               rule        => 'proto udp mod state state (NEW) dport (1814) @subchain \'ganeti-confd\' { saddr ($HOST_GANETI_V4) daddr ($HOST_GANETI_V4) ACCEPT; }',
-               notarule    => true,
+       file { '/etc/cron.hourly/puppet-cleanup-watcher-pause-file':
+               source => 'puppet:///modules/ganeti2/cleanup-watcher-pause-file',
+               mode    => '0555',
        }
 
-       @ferm::rule { 'dsa-ganeti-rapi-v4':
-               description => 'allow ganeti-rapi communication',
-               rule        => 'proto tcp mod state state (NEW) dport (5080) @subchain \'ganeti-rapi\' { saddr ($HOST_GANETI_V4) daddr ($HOST_GANETI_V4) ACCEPT; }',
-               notarule    => true,
+       if $::debarchitecture == 'arm64' {
+               file { '/usr/local/bin/qemu-system-aarch64-wrapper':
+                       source => 'puppet:///modules/ganeti2/qemu-system-aarch64-wrapper',
+                       mode   => '0755',
+               }
        }
-
-       @ferm::rule { 'dsa-drbd-v4':
-               description => 'allow drbd communication',
-               rule        => 'proto tcp mod state state (NEW) dport (11000:11999) @subchain \'drbd\' { saddr ($HOST_GANETI_BACKEND_V4) daddr ($HOST_GANETI_BACKEND_V4) ACCEPT; }',
-               notarule    => true,
-       }
-
-       @ferm::rule { 'dsa-ganeti-migrate':
-               description => 'allow kvm to migrate instances',
-               rule        => 'proto tcp dport 8102 @subchain \'ganeti-migrate\' { saddr ($HOST_GANETI_BACKEND_V4) daddr ($HOST_GANETI_BACKEND_V4) ACCEPT; }',
-               notarule    => true,
-       }
-
-       @ferm::rule { 'dsa-ganeti-ssh':
-               description => 'allow ganeti to ssh around',
-               rule        => 'proto tcp dport ssh @subchain \'ganeti-ssh\' { saddr ( $HOST_GANETI_V4 $HOST_GANETI_BACKEND_V4) ACCEPT; }',
-               notarule    => true,
-       }
-
-       file {
-               '/etc/ganeti/instance-debootstrap/variants.list':
-                       content => template('ganeti2/instance-debootstrap/variants.list.erb'),
-                       ;
-               '/etc/ganeti/instance-debootstrap/variants/dsa.conf':
-                       content => template('ganeti2/instance-debootstrap/variants/dsa.conf.erb'),
-                       ;
-               '/etc/ganeti/instance-debootstrap/hooks/00-dsa-configure-networking':
-                       content => template('ganeti2/instance-debootstrap/hooks/00-dsa-configure-networking.erb'),
-                       ;
-               '/etc/ganeti/instance-debootstrap/hooks/10-dsa-install-extra-packages':
-                       content => template('ganeti2/instance-debootstrap/hooks/10-dsa-install-extra-packages.erb'),
-                       ;
-               '/etc/ganeti/instance-debootstrap/hooks/20-dsa-install-bootloader':
-                       content => template('ganeti2/instance-debootstrap/hooks/20-dsa-install-bootloader.erb'),
-                       ;
-               '/etc/ganeti/instance-debootstrap/hooks/30-dsa-install-ssh-keys':
-                       content => template('ganeti2/instance-debootstrap/hooks/30-dsa-install-ssh-keys.erb'),
-                       ;
-       }
-
 }