Puppet Class: profile::installserver::preseed

Defined in:
modules/profile/manifests/installserver/preseed.pp

Overview

SPDX-License-Identifier: Apache-2.0 sets up preseeding dir and config on an install server

Parameters:

  • preseed_per_hostname (Hash) (defaults to: lookup('profile::installserver::preseed::preseed_per_hostname'))


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'modules/profile/manifests/installserver/preseed.pp', line 3

class profile::installserver::preseed (
  Hash $preseed_per_hostname = lookup('profile::installserver::preseed::preseed_per_hostname'),
) {
  include network::constants
  $preseed_subnets = Hash(
    $network::constants::all_network_subnets['production'].map |$datacenter_name, $datacenter_config| {
      $datacenter_config.map |$audience, $audience_config| {
        $audience_config.filter |$subnet_name, $_| {
          $subnet_name !~ /-(lvs|kube)/
        }.map |$subnet_name, $subnet_config| {
          [$subnet_name, {
              'subnet_gateway' => wmflib::cidr_first_address($subnet_config['ipv4']),
              'subnet_mask' => wmflib::cidr2mask($subnet_config['ipv4']),
              'datacenter_name' => $datacenter_name,
              'public_subnet' => $subnet_name =~ /^public/,
          }]
        }
      }
    }.flatten
  )

  class { 'install_server::preseed_server':
    preseed_subnets      => $preseed_subnets,
    preseed_per_hostname => $preseed_per_hostname,
  }

  # Backup
  $sets = ['srv-autoinstall',
  ]
  backup::set { $sets : }
}