-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[kubernetes] Support Kubernetes v1.32.0 with RHEL8 (#11885)
* [kubernetes] Support Kubernetes v1.32.0 * add workaround for RHEL8 Signed-off-by: Kay Yan <[email protected]> --------- Signed-off-by: Kay Yan <[email protected]> Co-authored-by: Mohamed Zaian <[email protected]>
- Loading branch information
Showing
12 changed files
with
110 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Kernel Requirements | ||
|
||
For Kubernetes >=1.32.0, the recommended kernel LTS version from the 4.x series is 4.19. Any 5.x or 6.x versions are also supported. For cgroups v2 support, the minimum version is 4.15 and the recommended version is 5.8+. Refer to [this link](https://github.com/kubernetes/kubernetes/blob/v1.32.0/vendor/k8s.io/system-validators/validators/types_unix.go#L33). For more information, see [kernel version requirements](https://kubernetes.io/docs/reference/node/kernel-version-requirements). | ||
|
||
If the OS kernel version is lower than required, add the following configuration to ignore the kubeadm preflight errors: | ||
|
||
```yaml | ||
kubeadm_ignore_preflight_errors: | ||
- SystemVerification | ||
``` | ||
The Kernel Version Matrixs: | ||
| OS Verion | Kernel Verion | Kernel >=4.19 | | ||
|--- | --- | --- | | ||
| RHEL 9 | 5.14 | :white_check_mark: | | ||
| RHEL 8 | 4.18 | :x: | | ||
| Alma Linux 9 | 5.14 | :white_check_mark: | | ||
| Alma Linux 8 | 4.18 | :x: | | ||
| Rocky Linux 9 | 5.14 | :white_check_mark: | | ||
| Rocky Linux 8 | 4.18 | :x: | | ||
| Oracle Linux 9 | 5.14 | :white_check_mark: | | ||
| Oracle Linux 8 | 4.18 | :x: | | ||
| Ubuntu 24.04 | 6.6 | :white_check_mark: | | ||
| Ubuntu 22.04 | 5.15 | :white_check_mark: | | ||
| Ubuntu 20.04 | 5.4 | :white_check_mark: | | ||
| Debian 12 | 6.1 | :white_check_mark: | | ||
| Debian 11 | 5.10 | :white_check_mark: | | ||
| Fedora 40 | 6.8 | :white_check_mark: | | ||
| Fedora 39 | 6.5 | :white_check_mark: | | ||
| openSUSE Leap 15.5 | 5.14 | :white_check_mark: | | ||
| Amazon Linux 2 | 4.14 | :x: | | ||
| openEuler 24.03 | 6.6 | :white_check_mark: | | ||
| openEuler 22.03 | 5.10 | :white_check_mark: | | ||
| openEuler 20.03 | 4.19 | :white_check_mark: | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.