bundles/icinga2: more auto-generation of stuff
This commit is contained in:
parent
7df6b1d13a
commit
d1bb94fd74
2 changed files with 35 additions and 35 deletions
|
@ -275,23 +275,6 @@ files = {
|
||||||
'mode': '0660',
|
'mode': '0660',
|
||||||
'group': 'icingaweb2',
|
'group': 'icingaweb2',
|
||||||
},
|
},
|
||||||
|
|
||||||
# Statusmonitor
|
|
||||||
'/etc/icinga2/icinga_statusmonitor.py': {
|
|
||||||
'triggers': {
|
|
||||||
'svc_systemd:icinga_statusmonitor:restart',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'/etc/systemd/system/icinga_statusmonitor.service': {
|
|
||||||
'triggers': {
|
|
||||||
'action:systemd-reload',
|
|
||||||
'svc_systemd:icinga_statusmonitor:restart',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
pkg_pip = {
|
|
||||||
'easysnmp': {}, # for check_usv_snmp
|
|
||||||
}
|
}
|
||||||
|
|
||||||
actions = {
|
actions = {
|
||||||
|
@ -337,13 +320,6 @@ svc_systemd = {
|
||||||
'icinga2': {
|
'icinga2': {
|
||||||
'needs': icinga_run_deps,
|
'needs': icinga_run_deps,
|
||||||
},
|
},
|
||||||
'icinga_statusmonitor': {
|
|
||||||
'needs': {
|
|
||||||
'file:/etc/icinga2/icinga_statusmonitor.py',
|
|
||||||
'file:/etc/systemd/system/icinga_statusmonitor.service',
|
|
||||||
'pkg_apt:python3-flask',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,12 +17,8 @@ defaults = {
|
||||||
'icinga2': {},
|
'icinga2': {},
|
||||||
'icinga2-ido-pgsql': {},
|
'icinga2-ido-pgsql': {},
|
||||||
'icingaweb2': {},
|
'icingaweb2': {},
|
||||||
|
'icingaweb2-module-monitoring': {},
|
||||||
# apparently no longer needed
|
'python3-easysnmp': {},
|
||||||
#'icingaweb2-module-monitoring': {},
|
|
||||||
|
|
||||||
# neeeded for statusmonitor
|
|
||||||
'python3-flask': {},
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
'icinga2': {
|
'icinga2': {
|
||||||
|
@ -59,6 +55,21 @@ defaults = {
|
||||||
'icingaweb2': {
|
'icingaweb2': {
|
||||||
'setup-token': repo.vault.password_for(f'{node.name} icingaweb2 setup-token'),
|
'setup-token': repo.vault.password_for(f'{node.name} icingaweb2 setup-token'),
|
||||||
},
|
},
|
||||||
|
'php': {
|
||||||
|
'version': '8.2',
|
||||||
|
'packages': {
|
||||||
|
'curl',
|
||||||
|
'gd',
|
||||||
|
'intl',
|
||||||
|
'imagick',
|
||||||
|
'ldap',
|
||||||
|
'mysql',
|
||||||
|
'opcache',
|
||||||
|
'pgsql',
|
||||||
|
'readline',
|
||||||
|
'xml',
|
||||||
|
},
|
||||||
|
},
|
||||||
'postgresql': {
|
'postgresql': {
|
||||||
'roles': {
|
'roles': {
|
||||||
'icinga2': {
|
'icinga2': {
|
||||||
|
@ -105,13 +116,26 @@ def add_users_from_json(metadata):
|
||||||
|
|
||||||
|
|
||||||
@metadata_reactor.provides(
|
@metadata_reactor.provides(
|
||||||
'firewall/port_rules/5665',
|
'nginx/vhosts/icingaweb2',
|
||||||
|
'nginx/vhosts/icinga_statusmonitor',
|
||||||
)
|
)
|
||||||
def firewall(metadata):
|
def nginx(metadata):
|
||||||
|
if not node.has_bundle('nginx'):
|
||||||
|
raise DoNotRunAgain
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'firewall': {
|
'nginx': {
|
||||||
'port_rules': {
|
'vhosts': {
|
||||||
'5665': atomic(metadata.get('icinga2/restrict-to', set())),
|
'icingaweb2': {
|
||||||
|
'domain': metadata.get('icinga2/web_domain'),
|
||||||
|
'webroot': '/usr/share/icingaweb2/public',
|
||||||
|
'locations': {
|
||||||
|
'/api/': {
|
||||||
|
'target': 'https://127.0.0.1:5665/',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'extras': True,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue