Puppet Class: icinga2::feature::idomysql

Defined in:
manifests/feature/idomysql.pp

Summary

Installs and configures the Icinga 2 feature ido-mysql.

Overview

Examples:

The ido-mysql featue requires an existing database and a user with permissions. This example uses the [puppetlabs/mysql](forge.puppet.com/puppetlabs/mysql) module.

include mysql::server

mysql::db { 'icinga2':
  user     => 'icinga2',
  password => 'supersecret',
  host     => 'localhost',
  grant    => ['SELECT', 'INSERT', 'UPDATE', 'DELETE', 'DROP', 'CREATE VIEW', 'CREATE', 'INDEX', 'EXECUTE', 'ALTER'],
}

class{ 'icinga2::feature::idomysql':
  user          => "icinga2",
  password      => "supersecret",
  database      => "icinga2",
  import_schema => true,
  require       => Mysql::Db['icinga2']
}

Parameters:

  • ensure (Enum['absent', 'present']) (defaults to: present)

    Set to present enables the feature ido-mysql, absent disables it.

  • host (Stdlib::Host) (defaults to: 'localhost')

    MySQL database host address.

  • port (Optional[Stdlib::Port::Unprivileged]) (defaults to: undef)

    MySQL database port.

  • socket_path (Optional[Stdlib::Absolutepath]) (defaults to: undef)

    MySQL socket path.

  • user (String) (defaults to: 'icinga')

    MySQL database user with read/write permission to the icinga database.

  • password (String)

    MySQL database user’s password. The password parameter isn’t parsed anymore.

  • database (String) (defaults to: 'icinga')

    MySQL database name.

  • enable_ssl (Boolean) (defaults to: false)

    Either enable or disable SSL/TLS. Other SSL parameters are only affected if this is set to ‘true’.

  • ssl_key_path (Optional[Stdlib::Absolutepath]) (defaults to: undef)

    Location of the private key. Only valid if ssl is enabled.

  • ssl_cert_path (Optional[Stdlib::Absolutepath]) (defaults to: undef)

    Location of the certificate. Only valid if ssl is enabled.

  • ssl_cacert_path (Optional[Stdlib::Absolutepath]) (defaults to: undef)

    Location of the CA certificate. Only valid if ssl is enabled.

  • ssl_key (Optional[Stdlib::Base64]) (defaults to: undef)

    The private key in a base64 encoded string to store in spicified ssl_key_path file. Only valid if ssl is enabled.

  • ssl_cert (Optional[Stdlib::Base64]) (defaults to: undef)

    The certificate in a base64 encoded string to store in spicified ssl_cert_path file. Only valid if ssl is enabled.

  • ssl_cacert (Optional[Stdlib::Base64]) (defaults to: undef)

    The CA root certificate in a base64 encoded string to store in spicified ssl_cacert_path file. Only valid if ssl is enabled.

  • ssl_capath (Optional[Stdlib::Absolutepath]) (defaults to: undef)

    MySQL SSL trusted SSL CA certificates in PEM format directory path. Only valid if ssl is enabled.

  • ssl_cipher (Optional[String]) (defaults to: undef)

    MySQL SSL list of allowed ciphers. Only valid if ssl is enabled.

  • table_prefix (Optional[String]) (defaults to: undef)

    MySQL database table prefix.

  • instance_name (Optional[String]) (defaults to: undef)

    Unique identifier for the local Icinga 2 instance.

  • instance_description (Optional[String]) (defaults to: undef)

    Description for the Icinga 2 instance.

  • enable_ha (Optional[Boolean]) (defaults to: undef)

    Enable the high availability functionality. Only valid in a cluster setup.

  • failover_timeout (Optional[Icinga2::Interval]) (defaults to: undef)

    Set the failover timeout in a HA cluster. Must not be lower than 60s.

  • cleanup (Optional[Hash[String,Icinga2::Interval]]) (defaults to: undef)

    Hash with items for historical table cleanup.

  • categories (Optional[Array]) (defaults to: undef)

    Array of information types that should be written to the database.

  • import_schema (Boolean) (defaults to: false)

    Whether to import the MySQL schema or not.



97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
# File 'manifests/feature/idomysql.pp', line 97

class icinga2::feature::idomysql(
  String                                      $password,
  Enum['absent', 'present']                   $ensure                 = present,
  Stdlib::Host                                $host                   = 'localhost',
  Optional[Stdlib::Port::Unprivileged]        $port                   = undef,
  Optional[Stdlib::Absolutepath]              $socket_path            = undef,
  String                                      $user                   = 'icinga',
  String                                      $database               = 'icinga',
  Boolean                                     $enable_ssl             = false,
  Optional[Stdlib::Absolutepath]              $ssl_key_path           = undef,
  Optional[Stdlib::Absolutepath]              $ssl_cert_path          = undef,
  Optional[Stdlib::Absolutepath]              $ssl_cacert_path        = undef,
  Optional[Stdlib::Base64]                    $ssl_key                = undef,
  Optional[Stdlib::Base64]                    $ssl_cert               = undef,
  Optional[Stdlib::Base64]                    $ssl_cacert             = undef,
  Optional[Stdlib::Absolutepath]              $ssl_capath             = undef,
  Optional[String]                            $ssl_cipher             = undef,
  Optional[String]                            $table_prefix           = undef,
  Optional[String]                            $instance_name          = undef,
  Optional[String]                            $instance_description   = undef,
  Optional[Boolean]                           $enable_ha              = undef,
  Optional[Icinga2::Interval]                 $failover_timeout       = undef,
  Optional[Hash[String,Icinga2::Interval]]    $cleanup                = undef,
  Optional[Array]                             $categories             = undef,
  Boolean                                     $import_schema          = false,
) {

  if ! defined(Class['::icinga2']) {
    fail('You must include the icinga2 base class before using any icinga2 feature class!')
  }

  $owner                  = $::icinga2::globals::user
  $group                  = $::icinga2::globals::group
  $conf_dir               = $::icinga2::globals::conf_dir
  $ssl_dir                = $::icinga2::globals::cert_dir
  $ido_mysql_package_name = $::icinga2::globals::ido_mysql_package_name
  $ido_mysql_schema       = $::icinga2::globals::ido_mysql_schema
  $manage_package         = $::icinga2::manage_package
  $manage_packages        = $::icinga2::manage_packages

  $_ssl_key_mode          = $::osfamily ? {
    'windows' => undef,
    default   => '0600',
  }

  $_notify           = $ensure ? {
    'present' => Class['::icinga2::service'],
    default   => undef,
  }

  # to build mysql exec command to import schema
  if $import_schema {
    $_mysql_options = join(any2array(delete_undef_values({
      '-h' => $host ? {
        /localhost/ => undef,
        default     => $host,
      },
      '-P' => $port,
      '-u' => $user,
    })), ' ')
  }

  File {
    owner   => $owner,
    group   => $group,
  }


  if $enable_ssl {
    # Set defaults for certificate stuff
    if $ssl_key {
      if $ssl_key_path {
        $_ssl_key_path = $ssl_key_path }
      else {
        $_ssl_key_path = "${ssl_dir}/IdoMysqlConnection_ido-mysql.key"
      }

      $_ssl_key = $::osfamily ? {
        'windows' => regsubst($ssl_key, '\n', "\r\n", 'EMG'),
        default   => $ssl_key,
      }

      file { $_ssl_key_path:
        ensure  => file,
        mode    => $_ssl_key_mode,
        content => $ssl_key,
        tag     => 'icinga2::config::file',
      }
    } else {
      $_ssl_key_path = $ssl_key_path
    }

    if $ssl_cert {
      if $ssl_cert_path {
        $_ssl_cert_path = $ssl_cert_path }
      else {
        $_ssl_cert_path = "${ssl_dir}/IdoMysqlConnection_ido-mysql.crt"
      }

      $_ssl_cert = $::osfamily ? {
        'windows' => regsubst($ssl_cert, '\n', "\r\n", 'EMG'),
        default   => $ssl_cert,
      }

      file { $_ssl_cert_path:
        ensure  => file,
        content => $ssl_cert,
        tag     => 'icinga2::config::file',
      }
    } else {
      $_ssl_cert_path = $ssl_cert_path
    }

    if $ssl_cacert {
      if $ssl_cacert_path {
        $_ssl_cacert_path = $ssl_cacert_path }
      else {
        $_ssl_cacert_path = "${ssl_dir}/IdoMysqlConnection_ido-mysql_ca.crt"
      }

      $_ssl_cacert = $::osfamily ? {
        'windows' => regsubst($ssl_cacert, '\n', "\r\n", 'EMG'),
        default   => $ssl_cacert,
      }

      file { $_ssl_cacert_path:
        ensure  => file,
        content => $ssl_cacert,
        tag     => 'icinga2::config::file',
      }
    } else {
      $_ssl_cacert_path = $ssl_cacert_path
    }

    if $import_schema {
      $_ssl_options = join(any2array(delete_undef_values({
        '--ssl-ca'     => $_ssl_cacert_path,
        '--ssl-cert'   => $_ssl_cert_path,
        '--ssl-key'    => $_ssl_key_path,
        '--ssl-capath' => $ssl_capath,
        '--ssl-cipher' => $ssl_cipher,
      })), ' ')

      # set cli options for mysql connection via tls
      $_mysql_command = "mysql ${_mysql_options} -p'${password}' ${_ssl_options} ${database}"
    }

    $attrs_ssl = {
      enable_ssl => $enable_ssl,
      ssl_ca     => $_ssl_cacert_path,
      ssl_cert   => $_ssl_cert_path,
      ssl_key    => $_ssl_key_path,
      ssl_capath => $ssl_capath,
      ssl_cipher => $ssl_cipher,
    }
  } # enable_ssl
  else {
    # set cli options for mysql connection
    if $import_schema {
      $_mysql_command = "mysql ${_mysql_options} -p'${password}' ${database}" }

    $attrs_ssl = { enable_ssl  => $enable_ssl }
  }

  $attrs = {
    host                  => $host,
    port                  => $port,
    socket_path           => $socket_path,
    user                  => $user,
    password              => "-:\"${password}\"",   # The password parameter isn't parsed anymore.
    database              => $database,
    table_prefix          => $table_prefix,
    instance_name         => $instance_name,
    instance_description  => $instance_description,
    enable_ha             => $enable_ha,
    failover_timeout      => $failover_timeout,
    cleanup               => $cleanup,
    categories            => $categories,
  }

  # install additional package
  if $ido_mysql_package_name and ($manage_package or $manage_packages) {
    if $::osfamily == 'debian' {
      ensure_resources('file', { '/etc/dbconfig-common' => { ensure => directory, owner => 'root', group => 'root' } })
      file { "/etc/dbconfig-common/${ido_mysql_package_name}.conf":
        ensure  => file,
        content => "dbc_install='false'\ndbc_upgrade='false'\ndbc_remove='false'\n",
        owner   => 'root',
        group   => 'root',
        mode    => '0600',
        before  => Package[$ido_mysql_package_name],
      }
    } # Debian

    package { $ido_mysql_package_name:
      ensure => installed,
      before => Icinga2::Feature['ido-mysql'],
    }
  }

  # import db schema
  if $import_schema {
    if $ido_mysql_package_name and ($manage_package or $manage_packages) {
      Package[$ido_mysql_package_name] -> Exec['idomysql-import-schema']
    }
    exec { 'idomysql-import-schema':
      user    => 'root',
      path    => $::path,
      command => "${_mysql_command} < \"${ido_mysql_schema}\"",
      unless  => "${_mysql_command} -Ns -e 'select version from icinga_dbversion'",
    }
  }

  # create object
  icinga2::object { 'icinga2::object::IdoMysqlConnection::ido-mysql':
    object_name => 'ido-mysql',
    object_type => 'IdoMysqlConnection',
    attrs       => delete_undef_values(merge($attrs, $attrs_ssl)),
    attrs_list  => concat(keys($attrs), keys($attrs_ssl)),
    target      => "${conf_dir}/features-available/ido-mysql.conf",
    order       => 10,
    notify      => $_notify,
  }

  # import library
  concat::fragment { 'icinga2::feature::ido-mysql':
    target  => "${conf_dir}/features-available/ido-mysql.conf",
    content => "library \"db_ido_mysql\"\n\n",
    order   => '05',
  }

  icinga2::feature { 'ido-mysql':
    ensure  => $ensure,
  }
}