Skip to content

Commit f2b64df

Browse files
committed
no more uv
1 parent d3e58b3 commit f2b64df

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,21 +56,13 @@ git submodule update --init
5656

5757
### 4: install the ciab tools
5858

59-
Just for faster setup, we'll add `uv`, a much faster python package manager.
6059
```
61-
curl -L https://github.com/astral-sh/uv/releases/download/0.6.8/uv-x86_64-unknown-linux-gnu.tar.gz \
62-
| tar -xzv \
63-
&& sudo mv uv-x86_64-unknown-linux-gnu/uv /usr/local/bin/
60+
python3 -m venv .venv
61+
source .venv/bin/activate
62+
pip install setuptools wheel
63+
pip install -r requirements.txt
6464
```
6565

66-
Then:
67-
```
68-
uv venv .venv
69-
source .venv/bin/activate
70-
uv pip install -r requirements.txt
71-
```
72-
73-
7466
### Customize the site-config
7567

7668
```
@@ -81,11 +73,17 @@ cp site-config/passwords.yml{.example,}
8173
kolla-genpwd -p site-config/passwords.yml
8274
```
8375

84-
If using the minimal CI config, add the following to `site-config/globals.yml`
76+
### Configure Networks
77+
78+
#### Dummy/loopback method
79+
If using the minimal CI config, run the following to extend `site-config/globals.yml`
8580
```
81+
cat <<EOF>> site-config/globals.yml
82+
8683
kolla_internal_vip_address: "172.18.200.254"
8784
network_interface: "fake_br"
8885
neutron_external_interface: "dummy1"
86+
EOF
8987
```
9088

9189
Then set up the corresponding dummy network interfaces:
@@ -101,6 +99,11 @@ sudo ip link set kolla_veth master fake_br
10199
sudo ip link set dummy1 up
102100
```
103101

102+
#### For "Real"
103+
Please refer to the following upstream docs
104+
105+
* https://docs.openstack.org/kolla-ansible/ussuri/admin/production-architecture-guide.html#node-types-and-services-running-on-them
106+
* https://docs.openstack.org/kolla-ansible/ussuri/admin/advanced-configuration.html#endpoint-network-configuration
104107

105108
## deploy the site
106109

0 commit comments

Comments
 (0)