|
31 | 31 | https://keys.datadoghq.com/DATADOG_RPM_KEY_E09422B3.public
|
32 | 32 | https://keys.datadoghq.com/DATADOG_RPM_KEY_FD4BF915.public
|
33 | 33 | https://keys.datadoghq.com/DATADOG_RPM_KEY.public')\
|
34 |
| - .with_baseurl('https://yum.datadoghq.com/rpm/x86_64/') |
| 34 | + .with_baseurl('https://yum.datadoghq.com/rpm/x86_64/')\ |
| 35 | + .with_repo_gpgcheck(false) |
35 | 36 | end
|
36 | 37 | end
|
37 | 38 | context 'with manage_repo => false' do
|
|
79 | 80 | https://keys.datadoghq.com/DATADOG_RPM_KEY_E09422B3.public
|
80 | 81 | https://keys.datadoghq.com/DATADOG_RPM_KEY_FD4BF915.public
|
81 | 82 | https://keys.datadoghq.com/DATADOG_RPM_KEY.public')\
|
82 |
| - .with_baseurl('https://yum.datadoghq.com/stable/6/x86_64/') |
| 83 | + .with_baseurl('https://yum.datadoghq.com/stable/6/x86_64/')\ |
| 84 | + .with_repo_gpgcheck(true) |
83 | 85 | end
|
84 | 86 | end
|
85 | 87 | context 'with manage_repo => false' do
|
|
127 | 129 | .with_gpgkey('https://keys.datadoghq.com/DATADOG_RPM_KEY_CURRENT.public
|
128 | 130 | https://keys.datadoghq.com/DATADOG_RPM_KEY_E09422B3.public
|
129 | 131 | https://keys.datadoghq.com/DATADOG_RPM_KEY_FD4BF915.public')\
|
130 |
| - .with_baseurl('https://yum.datadoghq.com/stable/7/x86_64/') |
| 132 | + .with_baseurl('https://yum.datadoghq.com/stable/7/x86_64/')\ |
| 133 | + .with_repo_gpgcheck(true) |
131 | 134 | end
|
132 | 135 | end
|
133 | 136 | context 'with manage_repo => false' do
|
|
151 | 154 | .with_ensure('latest')
|
152 | 155 | end
|
153 | 156 | end
|
| 157 | + |
| 158 | + context 'rhel 8.1' do |
| 159 | + # we expect repo_gpgcheck to be false on 8.1 |
| 160 | + let(:facts) do |
| 161 | + { |
| 162 | + osfamily: 'redhat', |
| 163 | + operatingsystem: 'RedHat', |
| 164 | + operatingsystemrelease: '8.1', |
| 165 | + architecture: 'x86_64', |
| 166 | + } |
| 167 | + end |
| 168 | + |
| 169 | + # it should install the mirror |
| 170 | + context 'with manage_repo => true' do |
| 171 | + let(:params) do |
| 172 | + { |
| 173 | + manage_repo: true, agent_major_version: 7 |
| 174 | + } |
| 175 | + end |
| 176 | + |
| 177 | + it do |
| 178 | + is_expected.to contain_yumrepo('datadog') |
| 179 | + .with_enabled(1)\ |
| 180 | + .with_gpgcheck(1)\ |
| 181 | + .with_gpgkey('https://keys.datadoghq.com/DATADOG_RPM_KEY_CURRENT.public |
| 182 | + https://keys.datadoghq.com/DATADOG_RPM_KEY_E09422B3.public |
| 183 | + https://keys.datadoghq.com/DATADOG_RPM_KEY_FD4BF915.public')\ |
| 184 | + .with_baseurl('https://yum.datadoghq.com/stable/7/x86_64/')\ |
| 185 | + .with_repo_gpgcheck(false) |
| 186 | + end |
| 187 | + end |
| 188 | + end |
| 189 | + |
| 190 | + context 'rhel 8.2' do |
| 191 | + # we expect repo_gpgcheck to be true on 8.2 (and later) |
| 192 | + let(:facts) do |
| 193 | + { |
| 194 | + osfamily: 'redhat', |
| 195 | + operatingsystem: 'RedHat', |
| 196 | + operatingsystemrelease: '8.2', |
| 197 | + architecture: 'x86_64', |
| 198 | + } |
| 199 | + end |
| 200 | + |
| 201 | + # it should install the mirror |
| 202 | + context 'with manage_repo => true' do |
| 203 | + let(:params) do |
| 204 | + { |
| 205 | + manage_repo: true, agent_major_version: 7 |
| 206 | + } |
| 207 | + end |
| 208 | + |
| 209 | + it do |
| 210 | + # we expect repo_gpgcheck to be false on 8.1 |
| 211 | + is_expected.to contain_yumrepo('datadog') |
| 212 | + .with_enabled(1)\ |
| 213 | + .with_gpgcheck(1)\ |
| 214 | + .with_gpgkey('https://keys.datadoghq.com/DATADOG_RPM_KEY_CURRENT.public |
| 215 | + https://keys.datadoghq.com/DATADOG_RPM_KEY_E09422B3.public |
| 216 | + https://keys.datadoghq.com/DATADOG_RPM_KEY_FD4BF915.public')\ |
| 217 | + .with_baseurl('https://yum.datadoghq.com/stable/7/x86_64/')\ |
| 218 | + .with_repo_gpgcheck(true) |
| 219 | + end |
| 220 | + end |
| 221 | + end |
154 | 222 | end
|
0 commit comments