mirror of https://github.com/kubernetes/kops.git
Add docs for Rocky Linux 8 and Ubuntu 22.04 (Jammy)
This commit is contained in:
parent
b6e0c5fa29
commit
0b39fefabb
|
|
@ -47,10 +47,11 @@ The following table provides the support status for various distros with regards
|
|||
| [Kope.io](#kopeio) | - | - | 1.18 | - |
|
||||
| [RHEL 7](#rhel-7) | - | 1.5 | 1.21 | - |
|
||||
| [RHEL 8](#rhel-8) | 1.15 | 1.18 | - | - |
|
||||
| [RHEL 8](#rhel-8) | 1.15 | 1.18 | - | - |
|
||||
| [Rocky 8](#rocky-8) | 1.23.2 | 1.24 | - | - |
|
||||
| Ubuntu 16.04 | 1.5 | 1.10 | 1.17 | 1.20 |
|
||||
| [Ubuntu 18.04](#ubuntu-1804-bionic) | 1.10 | 1.16 | - | - |
|
||||
| [Ubuntu 20.04](#ubuntu-2004-focal) | 1.16.2 | 1.18 | - | - |
|
||||
| [Ubuntu 22.04](#ubuntu-2204-jammy) | 1.23 | 1.24 | - | - |
|
||||
|
||||
## Supported Distros
|
||||
|
||||
|
|
@ -137,6 +138,19 @@ aws ec2 describe-images --region us-east-1 --output table \
|
|||
--filters "Name=name,Values=RHEL-8.*x86_64*"
|
||||
```
|
||||
|
||||
### Rocky 8
|
||||
|
||||
Rocky Linux is a community enterprise Operating System designed to be 100% bug-for-bug compatible with [RHEL 8](#rhel-8).
|
||||
|
||||
Available images can be listed using:
|
||||
|
||||
```bash
|
||||
aws ec2 describe-images --region us-east-1 --output table \
|
||||
--owners 792107900819 \
|
||||
--query "sort_by(Images, &CreationDate)[*].[CreationDate,Name,ImageId]" \
|
||||
--filters "Name=name,Values=Rocky-8-ec2-8.*.x86_64"
|
||||
```
|
||||
|
||||
### Ubuntu 18.04 (Bionic)
|
||||
|
||||
Ubuntu 18.04.5 is based on Kernel version **5.4** which fixes all the known major Kernel bugs.
|
||||
|
|
@ -164,6 +178,19 @@ aws ec2 describe-images --region us-east-1 --output table \
|
|||
--filters "Name=name,Values=ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-*"
|
||||
```
|
||||
|
||||
### Ubuntu 22.04 (Jammy)
|
||||
|
||||
Ubuntu 22.04 is based on Kernel version **5.15** which fixes all the known major Kernel bugs.
|
||||
|
||||
Available images can be listed using:
|
||||
|
||||
```bash
|
||||
aws ec2 describe-images --region us-east-1 --output table \
|
||||
--owners 099720109477 \
|
||||
--query "sort_by(Images, &CreationDate)[*].[CreationDate,Name,ImageId]" \
|
||||
--filters "Name=name,Values=ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-*"
|
||||
```
|
||||
|
||||
## Deprecated Distros
|
||||
|
||||
### CentOS 7
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ managed subnets will be configured to launch instances with Resource Based Names
|
|||
|
||||
* Support for CentOS 7 has been removed.
|
||||
|
||||
* Support for CentOS 8 has been removed.
|
||||
* Support for CentOS 8 has been removed (replaced by Rocky Linux 8).
|
||||
|
||||
* Support for Debian 9 has been removed.
|
||||
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@ kOps will directly manage the Karpenter Provisioner resources. Read more about h
|
|||
|
||||
## Other significant changes
|
||||
|
||||
* Adds support for Ubuntu 22.04
|
||||
|
||||
* Adds support for Rocky Linux 8
|
||||
|
||||
* The minimum version for the Terraform AWS Provider has been bumped to 4.0.0 to address the deprecation of the aws_s3_bucket_object resource and its replacement with the aws_s3_object resource. Such resources will be destroyed and recreated without downtime when applying the changes.
|
||||
|
||||
# Breaking changes
|
||||
|
|
|
|||
Loading…
Reference in New Issue