Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
25 changes: 12 additions & 13 deletions docs-ref-conceptual/Latest-version/azure-cli-support-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,12 @@ the public announcement of the retirement.
Azure CLI depends on Python version 3.8 or above. The following table summarizes the expected end of
support for each version of Python:

|Python version|End of support date|
|-|-|
|3.8|October 2024 |
|3.9|October 2025 |
|3.10|October 2026 |
|3.11|October 2027 |
| Python version | End of support date |
|----------------|---------------------|
| 3.9 | October 2025 |
| 3.10 | October 2026 |
| 3.11 | October 2027 |
| 3.12 | October 2028 |

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

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

| Operating system | Version | End of support |
| Operating system | Version | End of support |
| ---------------- | --------- | ----------------- |
| Ubuntu | 20.04 LTS | April 2025 |
| | 22.04 LTS | April 2027 |
| Ubuntu | 22.04 LTS | April 2027 |
| | 24.04 LTS | June 2029 |
| Debian | 11 | |
| | 12 | |
| Alpine | 3.17 | November 22, 2024 |
| Debian | 11 | August 31, 2026 |
| | 12 | June 30, 2028 |
| RHEL | 8 | May 31, 2029 |
| | 9 | May 31, 2032 |
| | 10 | May 31, 2035 |
| CentOS Stream | 9 | Estimated 2027 |
| Azure Linux | 2.0 | July 2025 |
| | 10 | Estimated 2030 |
| Azure Linux | 3.0 | |

> [!NOTE]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,22 @@ To install the Azure CLI, follow these steps:
1. Import the Microsoft repository key.

```bash
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo rpm --import https://packages.microsoft.com/keys/microsoft-2025.asc
```

2. For RHEL 9 or CentOS Stream, add `packages-microsoft-com-prod` repository:
2. For RHEL 10, add `packages-microsoft-com-prod` repository:

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

For CentOS Stream 10, add `packages-microsoft-com-prod` repository:

```bash
sudo dnf install -y https://packages.microsoft.com/config/centos/10/packages-microsoft-prod.rpm
```

For RHEL 9 or CentOS Stream 9, add `packages-microsoft-com-prod` repository:

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