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

[CentOS Stream] support centOS Stream in ansible. #573

Merged
merged 6 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ This project supports below scenarios for end-to-end guest operating system vali
|:-------------------------------------------------------| :------------------------------: | :----------------------: | :--------------------------------: |
| Red Hat Enterprise Linux 7.x, 8.x, 9.x | :heavy_check_mark: | | :heavy_check_mark: |
| CentOS 7.x, 8.x | :heavy_check_mark: | | :heavy_check_mark: |
| CentOS Stream 9.x | :heavy_check_mark: | | :heavy_check_mark: |
ZouYuhua marked this conversation as resolved.
Show resolved Hide resolved
| Oracle Linux 7.x, 8.x, 9.x | :heavy_check_mark: | | :heavy_check_mark: |
| Rocky Linux 8.x, 9.x | :heavy_check_mark: | | :heavy_check_mark: |
| AlmaLinux 8.x, 9.x | :heavy_check_mark: | | :heavy_check_mark: |
Expand Down
1 change: 1 addition & 0 deletions autoinstall/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
26. For FusionOS 22 unattend auto-install, please use files under Fusion.
27. For FusionOS 23 unattend auto-install, please use file Fusion/server_without_GUI/ks.cfg.
28. For Kylin Linux Advanced Server V10 unattend auto-install, please use file Kylin/Server/10/ks.cfg.
29. For CentOS Stream 9.x or later unattend auto-install, please use files under RHEL/8.
ZouYuhua marked this conversation as resolved.
Show resolved Hide resolved

# Notes
## For Windows
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
guest_os_ansible_distribution is match('Pardus.*') or
(guest_os_ansible_distribution == 'MIRACLE' and
guest_os_ansible_distribution_major_ver | int == 8) or
(guest_os_ansible_distribution == 'CentOS' and
guest_os_ansible_distribution_release is defined and guest_os_ansible_distribution_release == 'Stream') or
(guest_os_ansible_distribution in ["Astra Linux (Orel)", "ProLinux", "UnionTech", "Uos", "FreeBSD", "BigCloud", "FusionOS", "Kylin Linux Advanced Server"])

- name: "Skip test case for OS version which has vulnerable bootloaders"
Expand Down