unsymlink_bundles #2
1 changed files with 0 additions and 24 deletions
|
@ -42,18 +42,6 @@ actions = {
|
||||||
|
|
||||||
description = []
|
description = []
|
||||||
|
|
||||||
if not node.metadata.get('icinga_options/exclude_from_monitoring', False):
|
|
||||||
description.append('icingaweb2: https://icinga.kunsmann.eu/monitoring/host/show?host={}'.format(node.name))
|
|
||||||
|
|
||||||
if node.has_bundle('telegraf'):
|
|
||||||
description.append('Grafana: https://grafana.kunsmann.eu/d/{}'.format(UUID(int=node.magic_number).hex[:10]))
|
|
||||||
|
|
||||||
if (
|
|
||||||
not node.metadata.get('icinga_options/exclude_from_monitoring', False) or
|
|
||||||
node.has_bundle('telegraf')
|
|
||||||
):
|
|
||||||
description.append('') # divider line
|
|
||||||
|
|
||||||
if node.metadata.get('nginx/vhosts', {}):
|
if node.metadata.get('nginx/vhosts', {}):
|
||||||
description.append('nginx vhosts:')
|
description.append('nginx vhosts:')
|
||||||
|
|
||||||
|
@ -74,15 +62,3 @@ if node.metadata.get('nginx/vhosts', {}):
|
||||||
|
|
||||||
if node.metadata.get('description', []):
|
if node.metadata.get('description', []):
|
||||||
description.append('') # divider line
|
description.append('') # divider line
|
||||||
|
|
||||||
for line in node.metadata.get('description', []):
|
|
||||||
description.append('# {}'.format(italic(line)))
|
|
||||||
|
|
||||||
if description:
|
|
||||||
files['/etc/node.description'] = {
|
|
||||||
'content': '\n'.join(description) + '\n',
|
|
||||||
}
|
|
||||||
else:
|
|
||||||
files['/etc/node.description'] = {
|
|
||||||
'delete': True,
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue