# prometheus_cd::main::yumrepo.pp # Module name: prometheus_cd # Author: Arne Teuke (arne_teuke@confdroid.com) # @summary Class manages yumrepo for the prometheus_cd module. ############################################################################## class prometheus_cd::main::yumrepo ( ) inherits prometheus_cd::params { yumrepo { 'prometheus': ensure => 'present', name => 'prometheus', descr => 'prometheus rpms', baseurl => 'https://packagecloud.io/prometheus-rpm/release/el/9/$basearch', gpgkey => 'https://packagecloud.io/prometheus-rpm/release/gpgkey', enabled => '1', gpgcheck => '0', target => '/etc/yum.repo.d/prometheus.repo', } }