Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a8cbaf99 authored by POUILLOUX Laurent's avatar POUILLOUX Laurent
Browse files

Merge branch 'fix_15513' into 'master'

[gen:puppet:network_monitoring] disable monitoring of ports linked to BMC

See merge request !824
parents 4d69da33 1bd86545
Branches
No related tags found
1 merge request!824[gen:puppet:network_monitoring] disable monitoring of ports linked to BMC
Pipeline #1067794 passed with warnings
...@@ -65,6 +65,8 @@ def generate_puppet_network_monitoring(options) ...@@ -65,6 +65,8 @@ def generate_puppet_network_monitoring(options)
l['ports'].each do |p| l['ports'].each do |p|
next if p == {} next if p == {}
# bug 15513 : We don't want to monitor bmc traffic until supervision machine are dimensioned for it
next if p['uid'].include?('bmc')
next unless %w[other switch router server channel backbone].include?(p['kind']) next unless %w[other switch router server channel backbone].include?(p['kind'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment