Skip to content

Commit edf09d2

Browse files
Merge pull request #174 from tribe29/devel
Docs and Changelogs
2 parents bf5c4e7 + 3ca3659 commit edf09d2

15 files changed

+1338
-55
lines changed

CHANGELOG.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ tribe29.checkmk Release Notes
55
.. contents:: Topics
66

77

8+
v0.11.0
9+
=======
10+
11+
Major Changes
12+
-------------
13+
14+
- Add host_group module.
15+
- Add tag_group module.
16+
17+
Minor Changes
18+
-------------
19+
20+
- Agent role - (Actually in v0.10.0) Fix authentication handling, where several tasks would fail, when using a secret.
21+
- Agent role - Add support for CME.
22+
23+
New Modules
24+
-----------
25+
26+
- tribe29.checkmk.host_group - Manage host groups in Checkmk (bulk version).
27+
- tribe29.checkmk.tag_group - Manage tag_group within Checkmk
28+
829
v0.10.0
930
=======
1031

changelogs/.plugin-cache.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,23 @@ plugins:
3535
name: host
3636
namespace: ''
3737
version_added: 0.0.1
38+
host_group:
39+
description: Manage host groups in Checkmk (bulk version).
40+
name: host_group
41+
namespace: ''
42+
version_added: 0.11.0
3843
rule:
3944
description: Manage rules in Checkmk.
4045
name: rule
4146
namespace: ''
4247
version_added: 0.10.0
48+
tag_group:
49+
description: Manage tag_group within Checkmk
50+
name: tag_group
51+
namespace: ''
52+
version_added: 0.11.0
4353
netconf: {}
4454
shell: {}
4555
strategy: {}
4656
vars: {}
47-
version: 0.10.0
57+
version: 0.11.0
File renamed without changes.

changelogs/changelog.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,27 @@ releases:
7070
name: rule
7171
namespace: ''
7272
release_date: '2022-09-23'
73+
0.11.0:
74+
changes:
75+
major_changes:
76+
- Add host_group module.
77+
- Add tag_group module.
78+
minor_changes:
79+
- Agent role - (Actually in v0.10.0) Fix authentication handling, where several
80+
tasks would fail, when using a secret.
81+
- Agent role - Add support for CME.
82+
fragments:
83+
- agent_role.yml
84+
- host_group_module.yml
85+
- tag_group_module.yml
86+
modules:
87+
- description: Manage host groups in Checkmk (bulk version).
88+
name: host_group
89+
namespace: ''
90+
- description: Manage tag_group within Checkmk
91+
name: tag_group
92+
namespace: ''
93+
release_date: '2022-10-10'
7394
0.2.0:
7495
changes:
7596
known_issues:

docs/activation_module.rst

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
.. role:: ansible-option-versionadded
1919
.. role:: ansible-option-aliases
2020
.. role:: ansible-option-choices
21-
.. role:: ansible-option-choices-entry
22-
.. role:: ansible-option-default
21+
.. role:: ansible-option-choices-default-mark
2322
.. role:: ansible-option-default-bold
2423
.. role:: ansible-option-configuration
2524
.. role:: ansible-option-returned-bold
@@ -43,15 +42,17 @@ tribe29.checkmk.activation module -- Activate changes in Checkmk.
4342
.. Collection note
4443
4544
.. note::
46-
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.10.0).
45+
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.11.0).
4746

4847
To install it, use: :code:`ansible-galaxy collection install tribe29.checkmk`.
4948

5049
To use it in a playbook, specify: :code:`tribe29.checkmk.activation`.
5150

5251
.. version_added
5352
54-
.. versionadded:: tribe29.checkmk 0.0.1
53+
.. rst-class:: ansible-version-added
54+
55+
New in tribe29.checkmk 0.0.1
5556

5657
.. contents::
5758
:local:
@@ -197,9 +198,10 @@ Parameters
197198

198199
:ansible-option-choices:`Choices:`
199200

200-
- :ansible-option-default-bold:`false` :ansible-option-default:`← (default)`
201+
- :ansible-option-choices-entry-default:`false` :ansible-option-choices-default-mark:`← (default)`
201202
- :ansible-option-choices-entry:`true`
202203

204+
203205
.. raw:: html
204206

205207
</div>
@@ -345,7 +347,8 @@ Parameters
345347
:ansible-option-choices:`Choices:`
346348

347349
- :ansible-option-choices-entry:`false`
348-
- :ansible-option-default-bold:`true` :ansible-option-default:`← (default)`
350+
- :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)`
351+
349352

350353
.. raw:: html
351354

@@ -455,7 +458,7 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
455458
.. rst-class:: ansible-option-line
456459
.. rst-class:: ansible-option-sample
457460

458-
:ansible-option-sample-bold:`Sample:` 200
461+
:ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`200`
459462

460463

461464
.. raw:: html
@@ -500,7 +503,7 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
500503
.. rst-class:: ansible-option-line
501504
.. rst-class:: ansible-option-sample
502505

503-
:ansible-option-sample-bold:`Sample:` "Changes activated."
506+
:ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`"Changes activated."`
504507

505508

506509
.. raw:: html

docs/discovery_module.rst

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
.. role:: ansible-option-versionadded
1919
.. role:: ansible-option-aliases
2020
.. role:: ansible-option-choices
21-
.. role:: ansible-option-choices-entry
22-
.. role:: ansible-option-default
21+
.. role:: ansible-option-choices-default-mark
2322
.. role:: ansible-option-default-bold
2423
.. role:: ansible-option-configuration
2524
.. role:: ansible-option-returned-bold
@@ -43,15 +42,17 @@ tribe29.checkmk.discovery module -- Discover services in Checkmk.
4342
.. Collection note
4443
4544
.. note::
46-
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.10.0).
45+
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.11.0).
4746

4847
To install it, use: :code:`ansible-galaxy collection install tribe29.checkmk`.
4948

5049
To use it in a playbook, specify: :code:`tribe29.checkmk.discovery`.
5150

5251
.. version_added
5352
54-
.. versionadded:: tribe29.checkmk 0.0.1
53+
.. rst-class:: ansible-version-added
54+
55+
New in tribe29.checkmk 0.0.1
5556

5657
.. contents::
5758
:local:
@@ -298,11 +299,12 @@ Parameters
298299

299300
:ansible-option-choices:`Choices:`
300301

301-
- :ansible-option-default-bold:`new` :ansible-option-default:`← (default)`
302-
- :ansible-option-choices-entry:`remove`
303-
- :ansible-option-choices-entry:`fix\_all`
304-
- :ansible-option-choices-entry:`refresh`
305-
- :ansible-option-choices-entry:`only\_host\_labels`
302+
- :ansible-option-choices-entry-default:`"new"` :ansible-option-choices-default-mark:`← (default)`
303+
- :ansible-option-choices-entry:`"remove"`
304+
- :ansible-option-choices-entry:`"fix\_all"`
305+
- :ansible-option-choices-entry:`"refresh"`
306+
- :ansible-option-choices-entry:`"only\_host\_labels"`
307+
306308

307309
.. raw:: html
308310

@@ -343,7 +345,8 @@ Parameters
343345
:ansible-option-choices:`Choices:`
344346

345347
- :ansible-option-choices-entry:`false`
346-
- :ansible-option-default-bold:`true` :ansible-option-default:`← (default)`
348+
- :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)`
349+
347350

348351
.. raw:: html
349352

@@ -444,7 +447,7 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
444447
.. rst-class:: ansible-option-line
445448
.. rst-class:: ansible-option-sample
446449

447-
:ansible-option-sample-bold:`Sample:` 200
450+
:ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`200`
448451

449452

450453
.. raw:: html
@@ -489,7 +492,7 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
489492
.. rst-class:: ansible-option-line
490493
.. rst-class:: ansible-option-sample
491494

492-
:ansible-option-sample-bold:`Sample:` "Host created."
495+
:ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`"Host created."`
493496

494497

495498
.. raw:: html

docs/downtime_module.rst

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
.. role:: ansible-option-versionadded
1919
.. role:: ansible-option-aliases
2020
.. role:: ansible-option-choices
21-
.. role:: ansible-option-choices-entry
22-
.. role:: ansible-option-default
21+
.. role:: ansible-option-choices-default-mark
2322
.. role:: ansible-option-default-bold
2423
.. role:: ansible-option-configuration
2524
.. role:: ansible-option-returned-bold
@@ -43,15 +42,17 @@ tribe29.checkmk.downtime module -- Manage downtimes in Checkmk.
4342
.. Collection note
4443
4544
.. note::
46-
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.10.0).
45+
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.11.0).
4746

4847
To install it, use: :code:`ansible-galaxy collection install tribe29.checkmk`.
4948

5049
To use it in a playbook, specify: :code:`tribe29.checkmk.downtime`.
5150

5251
.. version_added
5352
54-
.. versionadded:: tribe29.checkmk 0.2.0
53+
.. rst-class:: ansible-version-added
54+
55+
New in tribe29.checkmk 0.2.0
5556

5657
.. contents::
5758
:local:
@@ -344,9 +345,10 @@ Parameters
344345

345346
:ansible-option-choices:`Choices:`
346347

347-
- :ansible-option-default-bold:`false` :ansible-option-default:`← (default)`
348+
- :ansible-option-choices-entry-default:`false` :ansible-option-choices-default-mark:`← (default)`
348349
- :ansible-option-choices-entry:`true`
349350

351+
350352
.. raw:: html
351353

352354
</div>
@@ -601,8 +603,9 @@ Parameters
601603

602604
:ansible-option-choices:`Choices:`
603605

604-
- :ansible-option-default-bold:`present` :ansible-option-default:`← (default)`
605-
- :ansible-option-choices-entry:`absent`
606+
- :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)`
607+
- :ansible-option-choices-entry:`"absent"`
608+
606609

607610
.. raw:: html
608611

@@ -643,7 +646,8 @@ Parameters
643646
:ansible-option-choices:`Choices:`
644647

645648
- :ansible-option-choices-entry:`false`
646-
- :ansible-option-default-bold:`true` :ansible-option-default:`← (default)`
649+
- :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)`
650+
647651

648652
.. raw:: html
649653

@@ -771,7 +775,7 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
771775
.. rst-class:: ansible-option-line
772776
.. rst-class:: ansible-option-sample
773777

774-
:ansible-option-sample-bold:`Sample:` ""
778+
:ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`""`
775779

776780

777781
.. raw:: html

docs/folder_module.rst

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
.. role:: ansible-option-versionadded
1919
.. role:: ansible-option-aliases
2020
.. role:: ansible-option-choices
21-
.. role:: ansible-option-choices-entry
22-
.. role:: ansible-option-default
21+
.. role:: ansible-option-choices-default-mark
2322
.. role:: ansible-option-default-bold
2423
.. role:: ansible-option-configuration
2524
.. role:: ansible-option-returned-bold
@@ -43,15 +42,17 @@ tribe29.checkmk.folder module -- Manage folders in Checkmk.
4342
.. Collection note
4443
4544
.. note::
46-
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.10.0).
45+
This module is part of the `tribe29.checkmk collection <https://galaxy.ansible.com/tribe29/checkmk>`_ (version 0.11.0).
4746

4847
To install it, use: :code:`ansible-galaxy collection install tribe29.checkmk`.
4948

5049
To use it in a playbook, specify: :code:`tribe29.checkmk.folder`.
5150

5251
.. version_added
5352
54-
.. versionadded:: tribe29.checkmk 0.0.1
53+
.. rst-class:: ansible-version-added
54+
55+
New in tribe29.checkmk 0.0.1
5556

5657
.. contents::
5758
:local:
@@ -336,8 +337,9 @@ Parameters
336337

337338
:ansible-option-choices:`Choices:`
338339

339-
- :ansible-option-default-bold:`present` :ansible-option-default:`← (default)`
340-
- :ansible-option-choices-entry:`absent`
340+
- :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)`
341+
- :ansible-option-choices-entry:`"absent"`
342+
341343

342344
.. raw:: html
343345

@@ -412,7 +414,8 @@ Parameters
412414
:ansible-option-choices:`Choices:`
413415

414416
- :ansible-option-choices-entry:`false`
415-
- :ansible-option-default-bold:`true` :ansible-option-default:`← (default)`
417+
- :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)`
418+
416419

417420
.. raw:: html
418421

@@ -519,7 +522,7 @@ Common return values are documented :ref:`here <common_return_values>`, the foll
519522
.. rst-class:: ansible-option-line
520523
.. rst-class:: ansible-option-sample
521524

522-
:ansible-option-sample-bold:`Sample:` "Folder created."
525+
:ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`"Folder created."`
523526

524527

525528
.. raw:: html

0 commit comments

Comments
 (0)