You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+51-1Lines changed: 51 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,56 @@ Icinga.Icinga Release Notes
4
4
5
5
.. contents:: Topics
6
6
7
+
v0.4.4
8
+
======
9
+
10
+
Release Summary
11
+
---------------
12
+
13
+
Introduction of Icinga for Windows role :code:`ifw` and performance increase in deployment of :code:`icinga2_objects`.
14
+
15
+
Major Changes
16
+
-------------
17
+
18
+
- Introduction of role :code:`ifw` - Icinga for Windows: This role allows to install the Icinga PowerShell Framework, manage components and repositories, and install and configure Icinga 2 through Icinga for Windows.
19
+
- Module :code:`ifw_backgrounddaemon`: Registers/unregisters an Icinga for Windows background daemon.
20
+
- Module :code:`ifw_component`: Installs/removes/updates Icinga for Windows components (e.g. :code:`agent`, :code:`plugins`).
21
+
- Module :code:`ifw_restapicommand`: Adds/removes commands to/from the whitelist/blacklist of the Icinga for Windows REST-Api.
22
+
- The performance of the action plugin :code:`icinga2_object` has been greatly improved.
23
+
Instead of writing individual objects to files and later merging them,
24
+
they are instead now merged in memory on a per destination basis.
25
+
This means that configuration files no longer have to be assembled after the fact.
26
+
27
+
This also drops the :code:`order` parameter previously used to define the order in which
28
+
objects are written if they belong to the same destination file.
29
+
The new behavior only changes the order in the files but does not change the end result.
30
+
31
+
A performance gain of up to 80% has been seen in testing.
32
+
33
+
Minor Changes
34
+
-------------
35
+
36
+
- In the :code:`icinga2` role objects are collected from different places before writing them to files. Duplicates could occur which was not taken care of. All collected objects are now deduplicated using the :code:`unique` filter right before writing to save some time during execution.
37
+
- The deb repositories made available by the :code:`repos` role now use the `deb822 format <https://repolib.readthedocs.io/en/latest/deb822-format.html>`__. This can lead to APT warnings on systems that already have the repositories deployed using the old format (sources.list). To fix this, simply remove the old :code:`icinga.list` file after the repositories have been deployed in the new format.
38
+
- The error messages about unsupported operating systems have been tuned. They should now appear if and only if the actual OS is in fact not supported instead of appearing after unrelated task failures.
39
+
40
+
Bugfixes
41
+
--------
42
+
43
+
- :code:`icingaweb2_roles` was not deployed at all if :code:`icingaweb2_admin_username` and :code:`icingaweb2_admin_password` were missing. Now for both, the predefined admin role and user-defined :code:`icingaweb2_roles`, the respective variables are tested for correctly when creating :code:`roles.ini`. Thus, the creation of an initial admin user is no longer strictly necessary.
44
+
- A short example for the previously undocumented :code:`icingaweb2_roles` has been added.
45
+
46
+
Known Issues
47
+
------------
48
+
49
+
- With the changes in :code:`icinga2_object` arises a problem.
50
+
The prior directory structure within :code:`icinga2_fragments_path` (default: :code:`/var/tmp/icinga/`) does not fit the new approach for writing configuration files.
51
+
Some paths that would become directories before are now treated as files.
52
+
If the old directory structure is present on a remote host, deployment with the new method will most likely fail due to this.
53
+
54
+
If the execution of :code:`icinga2_object` fails, deleting :code:`icinga2_fragments_path` should fix the problem.
55
+
This, however, is a manual step that needs to be done.
56
+
7
57
v0.4.3
8
58
======
9
59
@@ -20,7 +70,7 @@ Bugfixes
20
70
Modules are now installed and configured properly even when they are set to be disabled in the end.
21
71
- Fixed an issue where the :code:`config.ini` file of the :code:`monitoring` module was not deployed.
22
72
- More complex database passwords have been an issue when importing database schemas. The passwords are now properly quoted using the :code:`quote` filter.
23
-
This means that passwords containing characters such as :code:`#` and :code:`\` should now work correctly.
73
+
This means that passwords containing characters such as :code:`#` and :code:`\\` should now work correctly.
24
74
25
75
The change affects Icinga 2 (IDO), Icinga for Kubernetes, Icinga DB and Icinga Web 2.
26
76
- Switch from :code:`run_once: true` to :code:`throttle: 1` when applying database schema.
0 commit comments