Skip to content

Commit 856b49c

Browse files
authored
Support RHEL 10 (#5357)
1 parent 308bb0c commit 856b49c

File tree

2 files changed

+26
-15
lines changed

2 files changed

+26
-15
lines changed

docs-ref-conceptual/Latest-version/azure-cli-support-lifecycle.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,12 @@ the public announcement of the retirement.
190190
Azure CLI depends on Python version 3.8 or above. The following table summarizes the expected end of
191191
support for each version of Python:
192192

193-
|Python version|End of support date|
194-
|-|-|
195-
|3.8|October 2024 |
196-
|3.9|October 2025 |
197-
|3.10|October 2026 |
198-
|3.11|October 2027 |
193+
| Python version | End of support date |
194+
|----------------|---------------------|
195+
| 3.9 | October 2025 |
196+
| 3.10 | October 2026 |
197+
| 3.11 | October 2027 |
198+
| 3.12 | October 2028 |
199199

200200
Azure CLI can only be supported on operating systems where the above versions of Python are supported.
201201

@@ -208,18 +208,17 @@ Azure CLI can only be supported on operating systems where the above versions of
208208
time we stop testing and supporting it.
209209
- Here are the supported Linux operating systems for the Azure CLI:
210210

211-
| Operating system | Version | End of support |
211+
| Operating system | Version | End of support |
212212
| ---------------- | --------- | ----------------- |
213-
| Ubuntu | 20.04 LTS | April 2025 |
214-
| | 22.04 LTS | April 2027 |
213+
| Ubuntu | 22.04 LTS | April 2027 |
215214
| | 24.04 LTS | June 2029 |
216-
| Debian | 11 | |
217-
| | 12 | |
218-
| Alpine | 3.17 | November 22, 2024 |
215+
| Debian | 11 | August 31, 2026 |
216+
| | 12 | June 30, 2028 |
219217
| RHEL | 8 | May 31, 2029 |
220218
| | 9 | May 31, 2032 |
219+
| | 10 | May 31, 2035 |
221220
| CentOS Stream | 9 | Estimated 2027 |
222-
| Azure Linux | 2.0 | July 2025 |
221+
| | 10 | Estimated 2030 |
223222
| Azure Linux | 3.0 | |
224223

225224
> [!NOTE]

docs-ref-conceptual/Latest-version/includes/cli-install-linux-dnf.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,22 @@ To install the Azure CLI, follow these steps:
1919
1. Import the Microsoft repository key.
2020

2121
```bash
22-
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
22+
sudo rpm --import https://packages.microsoft.com/keys/microsoft-2025.asc
2323
```
2424

25-
2. For RHEL 9 or CentOS Stream, add `packages-microsoft-com-prod` repository:
25+
2. For RHEL 10, add `packages-microsoft-com-prod` repository:
26+
27+
```bash
28+
sudo dnf install -y https://packages.microsoft.com/config/rhel/10/packages-microsoft-prod.rpm
29+
```
30+
31+
For CentOS Stream 10, add `packages-microsoft-com-prod` repository:
32+
33+
```bash
34+
sudo dnf install -y https://packages.microsoft.com/config/centos/10/packages-microsoft-prod.rpm
35+
```
36+
37+
For RHEL 9 or CentOS Stream 9, add `packages-microsoft-com-prod` repository:
2638

2739
```bash
2840
sudo dnf install -y https://packages.microsoft.com/config/rhel/9.0/packages-microsoft-prod.rpm

0 commit comments

Comments
 (0)