Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(icinadb): add the ability to configure IcingaDB settings #39

Merged
merged 2 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,12 @@ icinga2_web_reporting: []

icinga2_web_icingadb: []

# IcingaDB settings

# icinga2_web_icingadb_settings:
# hostdowntime_all_services: true
icinga2_web_icingadb_settings: {}

# Grafana configuration
# icinga2_web_grafana:
# enabled: false
Expand Down
7 changes: 6 additions & 1 deletion templates/etc/icingaweb2/modules/icingadb/config.ini.j2
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[icingadb]
{% for resourceconf in icinga2_web_icingadb %}
resource = "{{ resourceconf.name }}"
{% endfor %}
{% endfor %}

[settings]
{% for key, value in icinga2_icingadb_settings.items() %}
gianklug marked this conversation as resolved.
Show resolved Hide resolved
{{ key }} = {{ value | to_json }}
{% endfor %}

[redis]
tls = "0"
Loading