3
0

add installation and update Readme

This commit is contained in:
Arne Teuke
2025-06-13 15:26:50 +02:00
parent c830889e8e
commit 51104edd2c
4 changed files with 22 additions and 0 deletions

View File

@@ -6,4 +6,14 @@
class prometheus_cd::main::install (
) inherits prometheus_cd::params {
require prometheus_cd::main::yumrepo
if $manage_prometheus == true {
package { $reqpackage_prom:
ensure => $pkg_ensure,
}
}
if $manage_node_exporter == true {
package { $reqpackage_ne:
ensure => $pkg_ensure,
}
}
}