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
2 changes: 1 addition & 1 deletion calico/getting-started/openstack/installation/redhat.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ These steps are detailed in this section.
EOF
```

1. Install version 1.0.1 of the `etcd3gw` Python package. This is
1. Install the `etcd3gw` Python package. This is
needed by $[prodname]'s OpenStack driver and DHCP agent.

```
Expand Down
11 changes: 8 additions & 3 deletions calico/getting-started/openstack/installation/ubuntu.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,14 @@ These steps are detailed in this section.
apt-get update
```

1. Install version 1.0.1 of the `etcd3gw` Python package. This is
needed by $[prodname]'s OpenStack driver and DHCP agent.

1. Install the `etcd3gw` Python package. This is needed by $[prodname]'s
OpenStack driver and DHCP agent. On Ubuntu 24.04 (Noble) and later, use the
version included in the Ubuntu archive:
```bash
apt-get install -y python3-etcd3gw
```
On Ubuntu 22.04 (Jammy) or earlier, etcd3gw is either too old in the Ubuntu
archive, or not available at all, so instead install from PyPI:
```
apt-get install -y python3-pip
pip3 install etcd3gw==2.4.0
Expand Down
Loading