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

[ansible] add testing for debian 12 #4040

Merged
merged 12 commits into from
Mar 25, 2024
2 changes: 1 addition & 1 deletion .github/workflows/ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
- debian9
- debian10
- debian11
- debian12
- opensuse12
- opensuse15
- ubuntu1604
Expand Down Expand Up @@ -134,7 +135,6 @@ jobs:
- ansible~=6.0
- ansible~=7.0
distro:
- "2012"
- "2016"
- "2019"
- "2022"
Expand Down
16 changes: 5 additions & 11 deletions deployments/ansible/molecule/config/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ driver:
provider:
name: virtualbox
platforms:
- name: "2012"
box: devopsgroup-io/windows_server-2012r2-standard-amd64-nocm
box_version: 1.67.0
- name: "2016"
box: cdaf/WindowsServer
box_version: 2022.09.01
cpus: 2
memory: 4096
instance_raw_config_args: &vagrant_args
Expand All @@ -23,21 +23,15 @@ platforms:
- "winrm.password = 'vagrant'"
- "winrm.retry_limit = 50"
- "winrm.retry_delay = 10"
- name: "2016"
box: cdaf/WindowsServer
box_version: 2022.09.01
cpus: 2
memory: 4096
instance_raw_config_args: *vagrant_args
- name: "2019"
box: gusztavvargadr/windows-server-2019-standard
box_version: 1809.0.2305
box_version: 1809.0.2312
cpus: 2
memory: 4096
instance_raw_config_args: *vagrant_args
- name: "2022"
box: gusztavvargadr/iis-windows-server
box_version: 10.2102.2306
box_version: 10.2102.2307
cpus: 2
memory: 4096
instance_raw_config_args: *vagrant_args
Expand Down
2 changes: 2 additions & 0 deletions deployments/ansible/molecule/shared/verify_tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
false
{%- elif ansible_distribution == "Amazon" and ansible_distribution_version == "2023" -%}
false
{%- elif ansible_os_family == "Debian" and ansible_distribution_major_version == "12" -%}
false
{%- else -%}
true
{%- endif -%}
Expand Down
2 changes: 2 additions & 0 deletions deployments/ansible/roles/collector/tasks/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
false
{%- elif ansible_distribution == "Amazon" and ansible_distribution_version == "2023" -%}
false
{%- elif ansible_os_family == "Debian" and ansible_distribution_major_version == "12" -%}
false
{%- else -%}
true
{%- endif -%}
Expand Down