From 3cbdaea25a6de12c91841cdab631f6cc1afd9a18 Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Mon, 11 Nov 2024 15:13:14 +0100 Subject: [PATCH 01/12] Bump Checkmk versions. --- scripts/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 1b56633f6..2c00a4451 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -16,8 +16,8 @@ collection_dir="${script_dir%/*}" # Update these as necessary: checkmk_ancient="2.1.0p48" -checkmk_oldstable="2.2.0p35" -checkmk_stable="2.3.0p19" +checkmk_oldstable="2.2.0p36" +checkmk_stable="2.3.0p20" while getopts 's:t:' OPTION; do case "$OPTION" in From 90f782a9c532995d93d6712eb0bdb288bd56a361 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 05:35:47 +0000 Subject: [PATCH 02/12] Bump tomli from 2.0.2 to 2.1.0 Bumps [tomli](https://github.com/hukkin/tomli) from 2.0.2 to 2.1.0. - [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md) - [Commits](https://github.com/hukkin/tomli/compare/2.0.2...2.1.0) --- updated-dependencies: - dependency-name: tomli dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- qa-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa-requirements.txt b/qa-requirements.txt index 538cba695..1bea9aa9b 100644 --- a/qa-requirements.txt +++ b/qa-requirements.txt @@ -4,5 +4,5 @@ isort==5.13.2 mypy-extensions==1.0.0 pathspec==0.12.1 platformdirs==4.3.6 -tomli==2.0.2 +tomli==2.1.0 typing-extensions==4.12.2 From ad2103577cfdb04df1526820cadd59a2f0e5bfa7 Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Mon, 18 Nov 2024 11:42:26 +0100 Subject: [PATCH 03/12] Bugfix rule lookup example. --- plugins/lookup/rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/lookup/rules.py b/plugins/lookup/rules.py index 4709d092b..63856271d 100644 --- a/plugins/lookup/rules.py +++ b/plugins/lookup/rules.py @@ -125,7 +125,7 @@ loop: "{{ lookup('checkmk.general.rules', ruleset='host_groups', - regex_folder='^/test$', + folder_regex='^/test$', server_url=server_url, site=site, automation_user=automation_user, From 1c585b0cbca05e3b11aa4a9de968b6ac43322d2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 05:08:46 +0000 Subject: [PATCH 04/12] Bump tomli from 2.1.0 to 2.2.1 Bumps [tomli](https://github.com/hukkin/tomli) from 2.1.0 to 2.2.1. - [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md) - [Commits](https://github.com/hukkin/tomli/compare/2.1.0...2.2.1) --- updated-dependencies: - dependency-name: tomli dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- qa-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa-requirements.txt b/qa-requirements.txt index 1bea9aa9b..c0ec88105 100644 --- a/qa-requirements.txt +++ b/qa-requirements.txt @@ -4,5 +4,5 @@ isort==5.13.2 mypy-extensions==1.0.0 pathspec==0.12.1 platformdirs==4.3.6 -tomli==2.1.0 +tomli==2.2.1 typing-extensions==4.12.2 From 78b1b99807ee43ba988c82e86b1c7b5e64c45c0d Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Tue, 3 Dec 2024 10:09:17 +0100 Subject: [PATCH 05/12] Update Windows Vagrant box. --- Vagrantfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 730e0e4f0..54b07c3e6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -204,8 +204,15 @@ Vagrant.configure("2") do |config| libvirt.memorybacking :access, :mode => 'shared' libvirt.memorybacking :source, :type => 'memfd' end - srv.vm.provision "shell", - inline: "powershell Set-NetFirewallRule -name 'FPS-ICMP4-ERQ-In*' -Enabled true" + $script = <<-SCRIPT + Set-NetFirewallRule -name 'FPS-ICMP4-ERQ-In*' -Enabled true + Get-NetFirewallrule -DisplayName *snmp* | Enable-NetFirewallRule + Install-WindowsFeature SNMP-Service,SNMP-WMI-Provider -IncludeManagementTools + Invoke-WebRequest -Uri 'https://www.spice-space.org/download/windows/spice-guest-tools/spice-guest-tools-latest.exe' -OutFile "C:\\tmp\\spice-guest-tools.exe" + Write-Output "You need to run the spice agent setup manually!" + Write-Output "Find it at 'C:\\tmp\\spice-guest-tools.exe'" + SCRIPT + srv.vm.provision "shell", inline: $script end end From 0a0602ebe27b23624cb34ab88fd4d0ca0b3bdfbd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 05:38:31 +0000 Subject: [PATCH 06/12] Bump click from 8.1.7 to 8.1.8 Bumps [click](https://github.com/pallets/click) from 8.1.7 to 8.1.8. - [Release notes](https://github.com/pallets/click/releases) - [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/click/compare/8.1.7...8.1.8) --- updated-dependencies: - dependency-name: click dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- qa-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa-requirements.txt b/qa-requirements.txt index c0ec88105..97c451d64 100644 --- a/qa-requirements.txt +++ b/qa-requirements.txt @@ -1,5 +1,5 @@ black==24.10.0 -click==8.1.7 +click==8.1.8 isort==5.13.2 mypy-extensions==1.0.0 pathspec==0.12.1 From b889dc21c163987d7cd1f32f3d9775430cde5866 Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Tue, 24 Dec 2024 08:08:21 +0100 Subject: [PATCH 07/12] Add uv direnv configuration. --- .envrc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .envrc diff --git a/.envrc b/.envrc new file mode 100644 index 000000000..4d02511b8 --- /dev/null +++ b/.envrc @@ -0,0 +1,19 @@ +# -*- mode: sh -*- + +layout_python() { + if [[ -d ".venv" ]]; then + VIRTUAL_ENV="$(pwd)/.venv" + fi + + if [[ -z $VIRTUAL_ENV || ! -d $VIRTUAL_ENV ]]; then + log_status "No virtual environment exists. Creating it." + uv venv + uv pip install -r requirements.txt + VIRTUAL_ENV="$(pwd)/.venv" + fi + + # Activate the virtual environment + . $VIRTUAL_ENV/bin/activate +} + +layout python \ No newline at end of file From 7f7f931f6a07166dc6564435fe85eec20538ab77 Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Tue, 24 Dec 2024 08:19:27 +0100 Subject: [PATCH 08/12] Add default port to global test variables. --- tests/integration/files/includes/vars/global.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/files/includes/vars/global.yml b/tests/integration/files/includes/vars/global.yml index b75106cbb..6b321c34f 100644 --- a/tests/integration/files/includes/vars/global.yml +++ b/tests/integration/files/includes/vars/global.yml @@ -1,6 +1,6 @@ --- # Configure location and credentials for the Checkmk REST API -checkmk_var_server_url: "http://127.0.0.1:{{ outer_item.port }}/" +checkmk_var_server_url: "http://127.0.0.1:{{ outer_item.port | default('80') }}/" checkmk_var_automation_user: "cmkadmin" checkmk_var_automation_secret: "Sup3rSec4et!" From c9c74b18aedaf6e52c882f1a0dd42d1ee8e6a315 Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Tue, 3 Dec 2024 09:24:41 +0100 Subject: [PATCH 09/12] Add argument_specs.yml to the roles. --- roles/agent/meta/argument_specs.yml | 209 +++++++++++++++++++++++++++ roles/server/meta/argument_specs.yml | 123 ++++++++++++++++ scripts/release.sh | 4 +- 3 files changed, 334 insertions(+), 2 deletions(-) create mode 100644 roles/agent/meta/argument_specs.yml create mode 100644 roles/server/meta/argument_specs.yml diff --git a/roles/agent/meta/argument_specs.yml b/roles/agent/meta/argument_specs.yml new file mode 100644 index 000000000..d09ebefff --- /dev/null +++ b/roles/agent/meta/argument_specs.yml @@ -0,0 +1,209 @@ +argument_specs: + + main: + short_description: Install Checkmk agents + description: + - This role installs Checkmk agents. + author: + - Robin Gierse + + options: + + checkmk_agent_version: + type: "str" + default: "2.3.0p19" + description: + - Refer to the README for details. + + checkmk_agent_edition: + type: "str" + default: "cre" + description: + - Refer to the README for details. + + checkmk_agent_server: + type: "str" + required: true + description: + - Refer to the README for details. + + checkmk_agent_server_protocol: + type: "str" + default: "http" + description: + - Refer to the README for details. + + checkmk_agent_site: + type: "str" + required: true + description: + - Refer to the README for details. + + checkmk_agent_registration_server_protocol: + type: "str" + default: "{{ checkmk_agent_server_protocol }}" + description: + - Refer to the README for details. + + checkmk_agent_registration_server: + type: "str" + default: "{{ checkmk_agent_server }}" + description: + - Refer to the README for details. + + checkmk_agent_registration_site: + type: "str" + default: "{{ checkmk_agent_site }}" + description: + - Refer to the README for details. + + checkmk_agent_server_validate_certs: + type: "bool" + default: true + description: + - Refer to the README for details. + + checkmk_agent_server_port: + type: "str" + default: "{% if checkmk_agent_server_protocol == 'https' %}443{% else %}80{% endif %}" + description: + - Refer to the README for details. + + checkmk_agent_user: + type: "str" + default: "{{ automation_user | default('automation') }}" + description: + - Refer to the README for details. + + checkmk_agent_port: + type: "int" + default: 6556 + description: + - Refer to the README for details. + + checkmk_agent_pass: + type: "str" + default: "{{ checkmk_var_automation_secret }}" + description: + - Refer to the README for details. + + checkmk_agent_secret: + type: "str" + default: "{{ checkmk_var_automation_secret }}" + description: + - Refer to the README for details. + + checkmk_agent_auto_activate: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_add_host: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_discover: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_discover_max_parallel_tasks: + type: "int" + default: 0 + description: + - Refer to the README for details. + + checkmk_agent_force_foreign_changes: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_update: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_tls: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_configure_firewall: + type: "bool" + default: true + description: + - Refer to the README for details. + + checkmk_agent_configure_firewall_zone: + type: "str" + default: "public" + description: + - Refer to the README for details. + + checkmk_agent_server_ips: + type: "list" + elements: "str" + description: + - Refer to the README for details. + + checkmk_agent_force_install: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_prep_legacy: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_agent_delegate_api_calls: + type: "str" + default: "localhost" + description: + - Refer to the README for details. + + checkmk_agent_delegate_download: + type: "str" + default: "{{ inventory_hostname }}" + description: + - Refer to the README for details. + + checkmk_agent_host_name: + type: "str" + default: "{{ inventory_hostname }}" + description: + - Refer to the README for details. + + checkmk_agent_folder: + type: "str" + default: "{{ checkmk_var_folder_path | default('/') }}" + description: + - Refer to the README for details. + + checkmk_agent_host_attributes: + type: "dict" + default: + ipaddress: "{{ checkmk_agent_host_ip | default(omit) }}" + description: + - Refer to the README for details. + + checkmk_agent_mode: + type: "str" + default: "pull" + description: + - Refer to the README for details. + + checkmk_agent_no_log: + type: "bool" + default: true + description: + - Refer to the README for details. diff --git a/roles/server/meta/argument_specs.yml b/roles/server/meta/argument_specs.yml new file mode 100644 index 000000000..2f6ce51d6 --- /dev/null +++ b/roles/server/meta/argument_specs.yml @@ -0,0 +1,123 @@ +argument_specs: + + main: + short_description: Install and manage Checkmk servers + description: + - This role installs Checkmk on servers and manages sites. + author: + - Robin Gierse + + options: + + checkmk_server_version: + type: "str" + default: "2.3.0p19" + description: + - Refer to the README for details. + + checkmk_server_edition: + type: "str" + default: "cre" + description: + - Refer to the README for details. + + checkmk_server_verify_setup: + type: "bool" + default: true + + checkmk_server_download_user: + type: "str" + description: + - Refer to the README for details. + + checkmk_server_download_pass: + type: "str" + description: + - Refer to the README for details. + + checkmk_server_sites: + type: "list" + elements: "dict" + options: + name: + type: "str" + required: true + description: "The name of the site." + version: + type: "str" + required: true + description: "The version of the site." + state: + type: "str" + required: true + description: "The desired target state for the site." + admin_pw: + type: "str" + description: "The initial password for the cmkadmin user." + update_conflict_resolution: + type: "str" + description: "How to handle file conflicts during updates." + omd_auto_restart: + type: "bool" + description: "Whether to automatically restart a site for configuration." + omd_config: + type: "list" + elements: "dict" + options: + var: + type: "str" + description: "The name of the OMD configuration variable." + value: + type: "str" + description: "The value of the variable." + + checkmk_server_configure_firewall: + type: "bool" + default: true + description: + - Refer to the README for details. + + checkmk_server_backup_on_update: + type: "bool" + default: true + description: + - Refer to the README for details. + Not recommended to disable this option! + + checkmk_server_backup_dir: + type: "str" + default: "/tmp" + description: + - Refer to the README for details. + + checkmk_server_backup_opts: + type: "str" + default: "--no-past" + description: + - Refer to the README for details. + + checkmk_server_allow_downgrades: + type: "bool" + default: false + description: + - Refer to the README for details. + + + checkmk_server_epel_gpg_check: + type: "bool" + default: true + description: + - Refer to the README for details. + + + checkmk_server_cleanup: + type: "bool" + default: false + description: + - Refer to the README for details. + + checkmk_server_no_log: + type: "bool" + default: true + description: + - Refer to the README for details. diff --git a/scripts/release.sh b/scripts/release.sh index 25348d75e..5af7a08b5 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -16,8 +16,8 @@ collection_dir="${script_dir%/*}" # Update these as necessary: checkmk_ancient="2.1.0p48" -checkmk_oldstable="2.2.0p36" -checkmk_stable="2.3.0p20" +checkmk_oldstable="2.2.0p35" +checkmk_stable="2.3.0p19" while getopts 's:t:' OPTION; do case "$OPTION" in From 51609c3da94cae6349fc8cd2d3bbf63ca63ab8c6 Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Tue, 24 Dec 2024 10:31:30 +0100 Subject: [PATCH 10/12] Prepare release. --- .github/workflows/ans-int-test-activation.yaml | 8 ++++---- .github/workflows/ans-int-test-bakery.yaml | 6 +++--- .github/workflows/ans-int-test-contact_group.yaml | 8 ++++---- .github/workflows/ans-int-test-discovery.yaml | 8 ++++---- .github/workflows/ans-int-test-downtime.yaml | 8 ++++---- .github/workflows/ans-int-test-folder.yaml | 8 ++++---- .github/workflows/ans-int-test-host.yaml | 8 ++++---- .github/workflows/ans-int-test-host_group.yaml | 8 ++++---- .github/workflows/ans-int-test-lkp-bakery.yaml | 6 +++--- .github/workflows/ans-int-test-lkp-folder.yaml | 8 ++++---- .github/workflows/ans-int-test-lkp-folders.yaml | 8 ++++---- .github/workflows/ans-int-test-lkp-host.yaml | 8 ++++---- .github/workflows/ans-int-test-lkp-hosts.yaml | 8 ++++---- .github/workflows/ans-int-test-lkp-rules.yaml | 8 ++++---- .github/workflows/ans-int-test-lkp-rulesets.yaml | 8 ++++---- .github/workflows/ans-int-test-lkp-site.yaml | 6 +++--- .github/workflows/ans-int-test-lkp-sites.yaml | 6 +++--- .github/workflows/ans-int-test-lkp-version.yaml | 8 ++++---- .github/workflows/ans-int-test-password.yaml | 8 ++++---- .github/workflows/ans-int-test-rule.yaml | 8 ++++---- .github/workflows/ans-int-test-service_group.yaml | 8 ++++---- .github/workflows/ans-int-test-tag_group.yaml | 8 ++++---- .github/workflows/ans-int-test-timeperiod.yaml | 8 ++++---- .github/workflows/ans-int-test-user.yaml | 8 ++++---- SUPPORT.md | 1 + galaxy.yml | 2 +- roles/agent/README.md | 2 +- roles/agent/defaults/main.yml | 2 +- roles/agent/molecule/2.1.0/group_vars/all.yml | 2 +- roles/agent/molecule/2.2.0/group_vars/all.yml | 2 +- roles/agent/molecule/2.3.0/group_vars/all.yml | 2 +- roles/server/README.md | 2 +- roles/server/defaults/main.yml | 2 +- roles/server/molecule/2.1.0/group_vars/all.yml | 2 +- roles/server/molecule/2.2.0/group_vars/all.yml | 2 +- roles/server/molecule/2.3.0/group_vars/all.yml | 2 +- scripts/release.sh | 6 +++--- tests/integration/targets/activation/vars/main.yml | 8 ++++---- tests/integration/targets/bakery/vars/main.yml | 6 +++--- tests/integration/targets/contact_group/vars/main.yml | 8 ++++---- tests/integration/targets/discovery/vars/main.yml | 8 ++++---- tests/integration/targets/downtime/vars/main.yml | 8 ++++---- tests/integration/targets/folder/vars/main.yml | 8 ++++---- tests/integration/targets/host/vars/main.yml | 8 ++++---- tests/integration/targets/host_group/vars/main.yml | 8 ++++---- tests/integration/targets/lookup_bakery/vars/main.yml | 6 +++--- tests/integration/targets/lookup_folder/vars/main.yml | 8 ++++---- tests/integration/targets/lookup_folders/vars/main.yml | 8 ++++---- tests/integration/targets/lookup_host/vars/main.yml | 8 ++++---- tests/integration/targets/lookup_hosts/vars/main.yml | 8 ++++---- tests/integration/targets/lookup_rules/vars/main.yml | 8 ++++---- .../integration/targets/lookup_rulesets/vars/main.yml | 8 ++++---- tests/integration/targets/lookup_site/vars/main.yml | 6 +++--- tests/integration/targets/lookup_sites/vars/main.yml | 6 +++--- tests/integration/targets/lookup_version/vars/main.yml | 8 ++++---- tests/integration/targets/password/vars/main.yml | 8 ++++---- tests/integration/targets/rule/vars/main.yml | 8 ++++---- tests/integration/targets/service_group/vars/main.yml | 8 ++++---- tests/integration/targets/site/vars/main.yml | 10 +++++----- tests/integration/targets/tag_group/vars/main.yml | 8 ++++---- tests/integration/targets/timeperiod/vars/main.yml | 8 ++++---- tests/integration/targets/user/vars/main.yml | 8 ++++---- 62 files changed, 204 insertions(+), 203 deletions(-) diff --git a/.github/workflows/ans-int-test-activation.yaml b/.github/workflows/ans-int-test-activation.yaml index 3fa07d87b..6354fea2c 100644 --- a/.github/workflows/ans-int-test-activation.yaml +++ b/.github/workflows/ans-int-test-activation.yaml @@ -64,28 +64,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-bakery.yaml b/.github/workflows/ans-int-test-bakery.yaml index 290e71293..8144a59de 100644 --- a/.github/workflows/ans-int-test-bakery.yaml +++ b/.github/workflows/ans-int-test-bakery.yaml @@ -63,21 +63,21 @@ jobs: services: ancient_cfe: - image: checkmk/check-mk-free:2.1.0p48 + image: checkmk/check-mk-free:2.1.0p49 ports: - 5421:5000 env: CMK_SITE_ID: "ancient_cfe" CMK_PASSWORD: "Sup3rSec4et!" old_cce: - image: checkmk/check-mk-cloud:2.2.0p35 + image: checkmk/check-mk-cloud:2.2.0p37 ports: - 5222:5000 env: CMK_SITE_ID: "old_cce" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-contact_group.yaml b/.github/workflows/ans-int-test-contact_group.yaml index 92b18b3fc..51e2444f9 100644 --- a/.github/workflows/ans-int-test-contact_group.yaml +++ b/.github/workflows/ans-int-test-contact_group.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-discovery.yaml b/.github/workflows/ans-int-test-discovery.yaml index c96831cb1..c016b65dc 100644 --- a/.github/workflows/ans-int-test-discovery.yaml +++ b/.github/workflows/ans-int-test-discovery.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-downtime.yaml b/.github/workflows/ans-int-test-downtime.yaml index 49c9f270c..78fb00baa 100644 --- a/.github/workflows/ans-int-test-downtime.yaml +++ b/.github/workflows/ans-int-test-downtime.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-folder.yaml b/.github/workflows/ans-int-test-folder.yaml index 638c7c8a1..24c26c9cf 100644 --- a/.github/workflows/ans-int-test-folder.yaml +++ b/.github/workflows/ans-int-test-folder.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-host.yaml b/.github/workflows/ans-int-test-host.yaml index 0af05300d..92ffc5d49 100644 --- a/.github/workflows/ans-int-test-host.yaml +++ b/.github/workflows/ans-int-test-host.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-host_group.yaml b/.github/workflows/ans-int-test-host_group.yaml index 1952ea560..d52cf028d 100644 --- a/.github/workflows/ans-int-test-host_group.yaml +++ b/.github/workflows/ans-int-test-host_group.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-bakery.yaml b/.github/workflows/ans-int-test-lkp-bakery.yaml index 5b440019f..084911322 100644 --- a/.github/workflows/ans-int-test-lkp-bakery.yaml +++ b/.github/workflows/ans-int-test-lkp-bakery.yaml @@ -63,21 +63,21 @@ jobs: services: ancient_cfe: - image: checkmk/check-mk-free:2.1.0p48 + image: checkmk/check-mk-free:2.1.0p49 ports: - 5421:5000 env: CMK_SITE_ID: "ancient_cfe" CMK_PASSWORD: "Sup3rSec4et!" old_cce: - image: checkmk/check-mk-cloud:2.2.0p35 + image: checkmk/check-mk-cloud:2.2.0p37 ports: - 5222:5000 env: CMK_SITE_ID: "old_cce" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-folder.yaml b/.github/workflows/ans-int-test-lkp-folder.yaml index bd2ef7037..715ebd508 100644 --- a/.github/workflows/ans-int-test-lkp-folder.yaml +++ b/.github/workflows/ans-int-test-lkp-folder.yaml @@ -61,28 +61,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-folders.yaml b/.github/workflows/ans-int-test-lkp-folders.yaml index 218a77a80..4d19aa623 100644 --- a/.github/workflows/ans-int-test-lkp-folders.yaml +++ b/.github/workflows/ans-int-test-lkp-folders.yaml @@ -61,28 +61,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-host.yaml b/.github/workflows/ans-int-test-lkp-host.yaml index 0d50bd13c..a3a42b03d 100644 --- a/.github/workflows/ans-int-test-lkp-host.yaml +++ b/.github/workflows/ans-int-test-lkp-host.yaml @@ -61,28 +61,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-hosts.yaml b/.github/workflows/ans-int-test-lkp-hosts.yaml index 0fb58c633..04286bca0 100644 --- a/.github/workflows/ans-int-test-lkp-hosts.yaml +++ b/.github/workflows/ans-int-test-lkp-hosts.yaml @@ -61,28 +61,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-rules.yaml b/.github/workflows/ans-int-test-lkp-rules.yaml index 34697b8c3..30abb4b1a 100644 --- a/.github/workflows/ans-int-test-lkp-rules.yaml +++ b/.github/workflows/ans-int-test-lkp-rules.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-rulesets.yaml b/.github/workflows/ans-int-test-lkp-rulesets.yaml index 6cdcacce3..4e3aaa26a 100644 --- a/.github/workflows/ans-int-test-lkp-rulesets.yaml +++ b/.github/workflows/ans-int-test-lkp-rulesets.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-site.yaml b/.github/workflows/ans-int-test-lkp-site.yaml index 94f3c912b..45d7188e2 100644 --- a/.github/workflows/ans-int-test-lkp-site.yaml +++ b/.github/workflows/ans-int-test-lkp-site.yaml @@ -63,21 +63,21 @@ jobs: services: old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-sites.yaml b/.github/workflows/ans-int-test-lkp-sites.yaml index 1ad937ab8..d35f18f83 100644 --- a/.github/workflows/ans-int-test-lkp-sites.yaml +++ b/.github/workflows/ans-int-test-lkp-sites.yaml @@ -63,21 +63,21 @@ jobs: services: old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-lkp-version.yaml b/.github/workflows/ans-int-test-lkp-version.yaml index 98aed1804..71f9704ac 100644 --- a/.github/workflows/ans-int-test-lkp-version.yaml +++ b/.github/workflows/ans-int-test-lkp-version.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-password.yaml b/.github/workflows/ans-int-test-password.yaml index 8a8b55231..12ec835eb 100644 --- a/.github/workflows/ans-int-test-password.yaml +++ b/.github/workflows/ans-int-test-password.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-rule.yaml b/.github/workflows/ans-int-test-rule.yaml index db16f6459..5dcc723f7 100644 --- a/.github/workflows/ans-int-test-rule.yaml +++ b/.github/workflows/ans-int-test-rule.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-service_group.yaml b/.github/workflows/ans-int-test-service_group.yaml index e8aed82b3..1d5f4e4a3 100644 --- a/.github/workflows/ans-int-test-service_group.yaml +++ b/.github/workflows/ans-int-test-service_group.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-tag_group.yaml b/.github/workflows/ans-int-test-tag_group.yaml index a1dd6f661..6136c97fb 100644 --- a/.github/workflows/ans-int-test-tag_group.yaml +++ b/.github/workflows/ans-int-test-tag_group.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-timeperiod.yaml b/.github/workflows/ans-int-test-timeperiod.yaml index 941287707..8d1fd6cb0 100644 --- a/.github/workflows/ans-int-test-timeperiod.yaml +++ b/.github/workflows/ans-int-test-timeperiod.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/.github/workflows/ans-int-test-user.yaml b/.github/workflows/ans-int-test-user.yaml index 504eb1834..cbb07bab8 100644 --- a/.github/workflows/ans-int-test-user.yaml +++ b/.github/workflows/ans-int-test-user.yaml @@ -63,28 +63,28 @@ jobs: services: ancient_cre: - image: checkmk/check-mk-raw:2.1.0p48 + image: checkmk/check-mk-raw:2.1.0p49 ports: - 5021:5000 env: CMK_SITE_ID: "ancient_cre" CMK_PASSWORD: "Sup3rSec4et!" old_cre: - image: checkmk/check-mk-raw:2.2.0p35 + image: checkmk/check-mk-raw:2.2.0p37 ports: - 5022:5000 env: CMK_SITE_ID: "old_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cre: - image: checkmk/check-mk-raw:2.3.0p19 + image: checkmk/check-mk-raw:2.3.0p23 ports: - 5023:5000 env: CMK_SITE_ID: "stable_cre" CMK_PASSWORD: "Sup3rSec4et!" stable_cme: - image: checkmk/check-mk-managed:2.3.0p19 + image: checkmk/check-mk-managed:2.3.0p23 ports: - 5323:5000 env: diff --git a/SUPPORT.md b/SUPPORT.md index 1f1b0e1f6..c0a3ae872 100644 --- a/SUPPORT.md +++ b/SUPPORT.md @@ -59,3 +59,4 @@ Collection Version | Checkmk Versions | Ansible Versions | Remarks 5.2.1 | 2.1.0p46, 2.2.0p32, 2.3.0p12 | 2.15, 2.16, 2.17 | None 5.3.0 | 2.1.0p48, 2.2.0p35, 2.3.0p18 | 2.15, 2.16, 2.17 | None 5.3.1 | 2.1.0p48, 2.2.0p35, 2.3.0p19 | 2.15, 2.16, 2.17 | None +5.3.2 | 2.1.0p49, 2.2.0p37, 2.3.0p23 | 2.15, 2.16, 2.17 | None diff --git a/galaxy.yml b/galaxy.yml index 6a3cbd3f7..a32f3072c 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -10,7 +10,7 @@ name: general # The version of the collection. Must be compatible with semantic versioning -version: 5.3.1 +version: 5.3.2 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/roles/agent/README.md b/roles/agent/README.md index 720ca70a9..324498cb0 100644 --- a/roles/agent/README.md +++ b/roles/agent/README.md @@ -16,7 +16,7 @@ Please make sure it is installed on your system and available for Ansible. ## Role Variables - checkmk_agent_version: "2.3.0p19" + checkmk_agent_version: "2.3.0p23" The Checkmk version of the site your agents will talk to. diff --git a/roles/agent/defaults/main.yml b/roles/agent/defaults/main.yml index 2de36f257..9a07bb598 100644 --- a/roles/agent/defaults/main.yml +++ b/roles/agent/defaults/main.yml @@ -1,5 +1,5 @@ --- -checkmk_agent_version: "2.3.0p19" +checkmk_agent_version: "2.3.0p23" checkmk_agent_edition: 'cre' checkmk_agent_server_protocol: 'http' checkmk_agent_server: 'localhost' diff --git a/roles/agent/molecule/2.1.0/group_vars/all.yml b/roles/agent/molecule/2.1.0/group_vars/all.yml index 06fc431cd..d9c1e2207 100644 --- a/roles/agent/molecule/2.1.0/group_vars/all.yml +++ b/roles/agent/molecule/2.1.0/group_vars/all.yml @@ -1,6 +1,6 @@ --- # General -checkmk_var_version: "2.1.0p48" +checkmk_var_version: "2.1.0p49" checkmk_var_edition: "cre" checkmk_var_checkmk_site: "mysite" checkmk_var_automation_user: "cmkadmin" diff --git a/roles/agent/molecule/2.2.0/group_vars/all.yml b/roles/agent/molecule/2.2.0/group_vars/all.yml index d46edd3dd..62a4db9a1 100644 --- a/roles/agent/molecule/2.2.0/group_vars/all.yml +++ b/roles/agent/molecule/2.2.0/group_vars/all.yml @@ -1,6 +1,6 @@ --- # General -checkmk_var_version: "2.2.0p35" +checkmk_var_version: "2.2.0p37" checkmk_var_edition: "cre" checkmk_var_checkmk_site: "mysite" checkmk_var_automation_user: "cmkadmin" diff --git a/roles/agent/molecule/2.3.0/group_vars/all.yml b/roles/agent/molecule/2.3.0/group_vars/all.yml index 55b2b668e..ed7731507 100644 --- a/roles/agent/molecule/2.3.0/group_vars/all.yml +++ b/roles/agent/molecule/2.3.0/group_vars/all.yml @@ -1,6 +1,6 @@ --- # General -checkmk_var_version: "2.3.0p19" +checkmk_var_version: "2.3.0p23" checkmk_var_edition: "cre" checkmk_var_checkmk_site: "mysite" checkmk_var_automation_user: "cmkadmin" diff --git a/roles/server/README.md b/roles/server/README.md index 99bff3e44..850d51f5c 100644 --- a/roles/server/README.md +++ b/roles/server/README.md @@ -25,7 +25,7 @@ To learn about the distributions used in automated tests, inspect the correspond ## Role Variables - checkmk_server_version: "2.3.0p19" + checkmk_server_version: "2.3.0p23" The global Checkmk version. This is used for installing Checkmk. To manage sites and their version, see `checkmk_server_sites`. diff --git a/roles/server/defaults/main.yml b/roles/server/defaults/main.yml index 7c8c51cbc..163124186 100644 --- a/roles/server/defaults/main.yml +++ b/roles/server/defaults/main.yml @@ -25,7 +25,7 @@ checkmk_server_server_stable_os: - Ubuntu-22 - Ubuntu-24 -checkmk_server_version: "2.3.0p19" +checkmk_server_version: "2.3.0p23" checkmk_server_edition: 'cre' checkmk_server_verify_setup: 'true' diff --git a/roles/server/molecule/2.1.0/group_vars/all.yml b/roles/server/molecule/2.1.0/group_vars/all.yml index f06b68d4f..5a9c085d4 100644 --- a/roles/server/molecule/2.1.0/group_vars/all.yml +++ b/roles/server/molecule/2.1.0/group_vars/all.yml @@ -1,6 +1,6 @@ --- # General -checkmk_var_version: "2.1.0p48" +checkmk_var_version: "2.1.0p49" checkmk_var_edition: "cre" checkmk_server_verify_setup: 'true' checkmk_var_server_url: "http://127.0.0.1/" diff --git a/roles/server/molecule/2.2.0/group_vars/all.yml b/roles/server/molecule/2.2.0/group_vars/all.yml index 423c2118d..9f6922df2 100644 --- a/roles/server/molecule/2.2.0/group_vars/all.yml +++ b/roles/server/molecule/2.2.0/group_vars/all.yml @@ -1,6 +1,6 @@ --- # General -checkmk_var_version: "2.2.0p35" +checkmk_var_version: "2.2.0p37" checkmk_var_edition: "cre" checkmk_server_verify_setup: 'true' checkmk_var_server_url: "http://127.0.0.1/" diff --git a/roles/server/molecule/2.3.0/group_vars/all.yml b/roles/server/molecule/2.3.0/group_vars/all.yml index 4174df98a..94efccc8e 100644 --- a/roles/server/molecule/2.3.0/group_vars/all.yml +++ b/roles/server/molecule/2.3.0/group_vars/all.yml @@ -1,6 +1,6 @@ --- # General -checkmk_var_version: "2.3.0p19" +checkmk_var_version: "2.3.0p23" checkmk_var_edition: "cre" checkmk_server_verify_setup: 'true' checkmk_var_server_url: "http://127.0.0.1/" diff --git a/scripts/release.sh b/scripts/release.sh index 5af7a08b5..472d20d98 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -15,9 +15,9 @@ script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) collection_dir="${script_dir%/*}" # Update these as necessary: -checkmk_ancient="2.1.0p48" -checkmk_oldstable="2.2.0p35" -checkmk_stable="2.3.0p19" +checkmk_ancient="2.1.0p49" +checkmk_oldstable="2.2.0p37" +checkmk_stable="2.3.0p23" while getopts 's:t:' OPTION; do case "$OPTION" in diff --git a/tests/integration/targets/activation/vars/main.yml b/tests/integration/targets/activation/vars/main.yml index b18d1f2fe..a3271c417 100644 --- a/tests/integration/targets/activation/vars/main.yml +++ b/tests/integration/targets/activation/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/bakery/vars/main.yml b/tests/integration/targets/bakery/vars/main.yml index 70a01e1e1..ba20e0e39 100644 --- a/tests/integration/targets/bakery/vars/main.yml +++ b/tests/integration/targets/bakery/vars/main.yml @@ -1,14 +1,14 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cce" site: "old_cce" port: "5222" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cfe" site: "ancient_cfe" port: "5421" diff --git a/tests/integration/targets/contact_group/vars/main.yml b/tests/integration/targets/contact_group/vars/main.yml index e771df00b..db5a375e5 100644 --- a/tests/integration/targets/contact_group/vars/main.yml +++ b/tests/integration/targets/contact_group/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/discovery/vars/main.yml b/tests/integration/targets/discovery/vars/main.yml index d37d32581..80f11ed17 100644 --- a/tests/integration/targets/discovery/vars/main.yml +++ b/tests/integration/targets/discovery/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/downtime/vars/main.yml b/tests/integration/targets/downtime/vars/main.yml index b18d1f2fe..a3271c417 100644 --- a/tests/integration/targets/downtime/vars/main.yml +++ b/tests/integration/targets/downtime/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/folder/vars/main.yml b/tests/integration/targets/folder/vars/main.yml index a7f925175..201cde65e 100644 --- a/tests/integration/targets/folder/vars/main.yml +++ b/tests/integration/targets/folder/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/host/vars/main.yml b/tests/integration/targets/host/vars/main.yml index f43c3c628..df55c87e1 100644 --- a/tests/integration/targets/host/vars/main.yml +++ b/tests/integration/targets/host/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/host_group/vars/main.yml b/tests/integration/targets/host_group/vars/main.yml index 75637edd3..42b7bc4c2 100644 --- a/tests/integration/targets/host_group/vars/main.yml +++ b/tests/integration/targets/host_group/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/lookup_bakery/vars/main.yml b/tests/integration/targets/lookup_bakery/vars/main.yml index 2843442b3..414efb0e7 100644 --- a/tests/integration/targets/lookup_bakery/vars/main.yml +++ b/tests/integration/targets/lookup_bakery/vars/main.yml @@ -1,14 +1,14 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cce" site: "old_cce" port: "5222" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cfe" site: "ancient_cfe" port: "5421" diff --git a/tests/integration/targets/lookup_folder/vars/main.yml b/tests/integration/targets/lookup_folder/vars/main.yml index 3b0445908..1f7152704 100644 --- a/tests/integration/targets/lookup_folder/vars/main.yml +++ b/tests/integration/targets/lookup_folder/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/lookup_folders/vars/main.yml b/tests/integration/targets/lookup_folders/vars/main.yml index 07441d371..574805399 100644 --- a/tests/integration/targets/lookup_folders/vars/main.yml +++ b/tests/integration/targets/lookup_folders/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/lookup_host/vars/main.yml b/tests/integration/targets/lookup_host/vars/main.yml index 45f9ea471..46ab5f7de 100644 --- a/tests/integration/targets/lookup_host/vars/main.yml +++ b/tests/integration/targets/lookup_host/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/lookup_hosts/vars/main.yml b/tests/integration/targets/lookup_hosts/vars/main.yml index b2376f603..a1b1fc1c7 100644 --- a/tests/integration/targets/lookup_hosts/vars/main.yml +++ b/tests/integration/targets/lookup_hosts/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/lookup_rules/vars/main.yml b/tests/integration/targets/lookup_rules/vars/main.yml index fbfb572f2..2006953c4 100644 --- a/tests/integration/targets/lookup_rules/vars/main.yml +++ b/tests/integration/targets/lookup_rules/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/lookup_rulesets/vars/main.yml b/tests/integration/targets/lookup_rulesets/vars/main.yml index f34517511..cce063bf2 100644 --- a/tests/integration/targets/lookup_rulesets/vars/main.yml +++ b/tests/integration/targets/lookup_rulesets/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/lookup_site/vars/main.yml b/tests/integration/targets/lookup_site/vars/main.yml index fc06247ce..f0f7619fb 100644 --- a/tests/integration/targets/lookup_site/vars/main.yml +++ b/tests/integration/targets/lookup_site/vars/main.yml @@ -1,14 +1,14 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" diff --git a/tests/integration/targets/lookup_sites/vars/main.yml b/tests/integration/targets/lookup_sites/vars/main.yml index fc06247ce..f0f7619fb 100644 --- a/tests/integration/targets/lookup_sites/vars/main.yml +++ b/tests/integration/targets/lookup_sites/vars/main.yml @@ -1,14 +1,14 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" diff --git a/tests/integration/targets/lookup_version/vars/main.yml b/tests/integration/targets/lookup_version/vars/main.yml index 850ef4e70..623b80e91 100644 --- a/tests/integration/targets/lookup_version/vars/main.yml +++ b/tests/integration/targets/lookup_version/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/password/vars/main.yml b/tests/integration/targets/password/vars/main.yml index 1ba1f4a9e..f90f01f19 100644 --- a/tests/integration/targets/password/vars/main.yml +++ b/tests/integration/targets/password/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/rule/vars/main.yml b/tests/integration/targets/rule/vars/main.yml index 850ef4e70..623b80e91 100644 --- a/tests/integration/targets/rule/vars/main.yml +++ b/tests/integration/targets/rule/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/service_group/vars/main.yml b/tests/integration/targets/service_group/vars/main.yml index 27c8d0ca4..cec095237 100644 --- a/tests/integration/targets/service_group/vars/main.yml +++ b/tests/integration/targets/service_group/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/site/vars/main.yml b/tests/integration/targets/site/vars/main.yml index 968d7c805..5cff94d34 100644 --- a/tests/integration/targets/site/vars/main.yml +++ b/tests/integration/targets/site/vars/main.yml @@ -1,6 +1,6 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" remote_sites: @@ -99,7 +99,7 @@ checkmk_var_test_sites: authentication: username: "cmkadmin" password: "{{ checkmk_var_automation_secret }}" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cee" site: "stable_cee" remote_sites: @@ -127,7 +127,7 @@ checkmk_var_test_sites: authentication: username: "cmkadmin" password: "{{ checkmk_var_automation_secret }}" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" remote_sites: @@ -174,7 +174,7 @@ checkmk_var_test_sites: authentication: username: "cmkadmin" password: "{{ checkmk_var_automation_secret }}" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" remote_sites: @@ -202,6 +202,6 @@ checkmk_var_test_sites: authentication: username: "cmkadmin" password: "{{ checkmk_var_automation_secret }}" - # - version: "2.1.0p48" + # - version: "2.1.0p49" # edition: "cre" # site: "ancient_cre" diff --git a/tests/integration/targets/tag_group/vars/main.yml b/tests/integration/targets/tag_group/vars/main.yml index 16df5e05c..bab677e14 100644 --- a/tests/integration/targets/tag_group/vars/main.yml +++ b/tests/integration/targets/tag_group/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/timeperiod/vars/main.yml b/tests/integration/targets/timeperiod/vars/main.yml index 5912172b5..f20964f49 100644 --- a/tests/integration/targets/timeperiod/vars/main.yml +++ b/tests/integration/targets/timeperiod/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" diff --git a/tests/integration/targets/user/vars/main.yml b/tests/integration/targets/user/vars/main.yml index e16e99c46..03ce882b6 100644 --- a/tests/integration/targets/user/vars/main.yml +++ b/tests/integration/targets/user/vars/main.yml @@ -1,18 +1,18 @@ --- checkmk_var_test_sites: - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cme" site: "stable_cme" port: "5323" - - version: "2.3.0p19" + - version: "2.3.0p23" edition: "cre" site: "stable_cre" port: "5023" - - version: "2.2.0p35" + - version: "2.2.0p37" edition: "cre" site: "old_cre" port: "5022" - - version: "2.1.0p48" + - version: "2.1.0p49" edition: "cre" site: "ancient_cre" port: "5021" From d32511c2f8b2697eef97c224012f784d14da55b8 Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Tue, 24 Dec 2024 10:31:40 +0100 Subject: [PATCH 11/12] Add changelog. --- changelogs/fragments/release.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelogs/fragments/release.yml diff --git a/changelogs/fragments/release.yml b/changelogs/fragments/release.yml new file mode 100644 index 000000000..383813465 --- /dev/null +++ b/changelogs/fragments/release.yml @@ -0,0 +1 @@ +release_summary: "Build related changes and documentation fixes for the holiday season." From 92b73faca337d7e723554ce144bc14f7d5087a7e Mon Sep 17 00:00:00 2001 From: Robin Gierse Date: Tue, 24 Dec 2024 10:35:10 +0100 Subject: [PATCH 12/12] Add concurrency to molecule workflows. --- .github/workflows/molecule-role-agent.yaml | 4 ++++ .github/workflows/molecule-role-server.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/molecule-role-agent.yaml b/.github/workflows/molecule-role-agent.yaml index e43c7d178..9e2a9f3ca 100644 --- a/.github/workflows/molecule-role-agent.yaml +++ b/.github/workflows/molecule-role-agent.yaml @@ -4,6 +4,10 @@ env: NAMESPACE: checkmk COLLECTION_NAME: general +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + name: Molecule Tests for Agent Role on: workflow_dispatch: diff --git a/.github/workflows/molecule-role-server.yaml b/.github/workflows/molecule-role-server.yaml index c0813d0ee..da64ad7dd 100644 --- a/.github/workflows/molecule-role-server.yaml +++ b/.github/workflows/molecule-role-server.yaml @@ -4,6 +4,10 @@ env: NAMESPACE: checkmk COLLECTION_NAME: general +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + name: Molecule Tests for Server Role on: workflow_dispatch: