Browse Source
Add kylin OS support (#9078 )
Signed-off-by: bo.jiang <bo.jiang@daocloud.io>
pull/9144/head
ERIK
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with
16 additions and
3 deletions
README.md
docs/_sidebar.md
docs/kylinlinux.md
roles/bootstrap-os/tasks/main.yml
roles/container-engine/containerd/tasks/main.yml
roles/kubernetes/preinstall/tasks/0020-verify-settings.yml
@ -127,6 +127,7 @@ vagrant up
- **Oracle Linux** 7, [8 ](docs/centos.md#centos-8 )
- **Alma Linux** [8 ](docs/centos.md#centos-8 )
- **Rocky Linux** [8 ](docs/centos.md#centos-8 )
- **Kylin Linux Advanced Server V10** (experimental: see [kylin linux notes ](docs/kylinlinux.md ))
- **Amazon Linux 2** (experimental: see [amazon linux notes ](docs/amazonlinux.md ))
Note: Upstart/SysV init based OS types are not supported.
@ -35,6 +35,7 @@
* [OpenSUSE ](docs/opensuse.md )
* [RedHat Enterprise Linux ](docs/rhel.md )
* [CentOS/OracleLinux/AlmaLinux/Rocky Linux ](docs/centos.md )
* [Kylin Linux Advanced Server V10 ](docs/kylinlinux.md )
* [Amazon Linux 2 ](docs/amazonlinux.md )
* CRI
* [Containerd ](docs/containerd.md )
@ -0,0 +1,11 @@
# Kylin Linux
Kylin Linux is currently only supported with containerd runtime.
**Note:** that Kylin Linux is not currently covered in kubespray CI and
support for it is currently considered experimental.
At present, only `Kylin Linux Advanced Server V10` has been adapted, which can support the deployment of aarch64 and x86_64 platforms.
There are no special considerations for using Kylin Linux as the target OS
for Kubespray deployments.
@ -7,7 +7,7 @@
check_mode : false
- include_tasks : bootstrap-centos.yml
when : '' 'ID="centos"' ' in os_release.stdout_lines or ' 'ID="ol"' ' in os_release.stdout_lines or ' 'ID="almalinux"' ' in os_release.stdout_lines or ' 'ID="rocky"' ' in os_release.stdout_lines'
when : '' 'ID="centos"' ' in os_release.stdout_lines or ' 'ID="ol"' ' in os_release.stdout_lines or ' 'ID="almalinux"' ' in os_release.stdout_lines or ' 'ID="rocky"' ' in os_release.stdout_lines or ' 'ID="kylin"' ' in os_release.stdout_lines '
- include_tasks : bootstrap-amazon.yml
when : '' 'ID="amzn"' ' in os_release.stdout_lines'
@ -3,7 +3,7 @@
fail:
msg : "{{ ansible_distribution }} is not supported by containerd."
when:
- ansible_distribution not in ["CentOS", "OracleLinux", "RedHat", "Ubuntu", "Debian", "Fedora", "AlmaLinux", "Rocky", "Amazon", "Flatcar", "Flatcar Container Linux by Kinvolk", "Suse", "openSUSE Leap", "openSUSE Tumbleweed"]
- ansible_distribution not in ["CentOS", "OracleLinux", "RedHat", "Ubuntu", "Debian", "Fedora", "AlmaLinux", "Rocky", "Amazon", "Flatcar", "Flatcar Container Linux by Kinvolk", "Suse", "openSUSE Leap", "openSUSE Tumbleweed", "Kylin Linux Advanced Server" ]
- name : containerd | Remove any package manager controlled containerd package
package:
@ -24,7 +24,7 @@
- name : Stop if unknown OS
assert:
that : ansible_distribution in ['RedHat', 'CentOS', 'Fedora', 'Ubuntu', 'Debian', 'Flatcar', 'Flatcar Container Linux by Kinvolk', 'Suse', 'openSUSE Leap', 'openSUSE Tumbleweed', 'ClearLinux', 'OracleLinux', 'AlmaLinux', 'Rocky', 'Amazon']
that : ansible_distribution in ['RedHat', 'CentOS', 'Fedora', 'Ubuntu', 'Debian', 'Flatcar', 'Flatcar Container Linux by Kinvolk', 'Suse', 'openSUSE Leap', 'openSUSE Tumbleweed', 'ClearLinux', 'OracleLinux', 'AlmaLinux', 'Rocky', 'Amazon', 'Kylin Linux Advanced Server' ]
msg : "{{ ansible_distribution }} is not a known OS"
when : not ignore_assert_errors