Skip to content

Commit 287e89b

Browse files
authored
Merge pull request #970 from stackhpc/zed-tempest-docs
zed tempest docs
2 parents 3d9a2eb + b83cec2 commit 287e89b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

doc/source/contributor/environments/aufn-ceph.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This environment creates a Universe-from-nothing_-style deployment of Kayobe con
1414
Prerequisites
1515
=============
1616

17-
* a baremetal node with at least 64GB of RAM running CentOS Stream 8 (or Ubuntu)
17+
* a baremetal node with at least 64GB of RAM running Rocky Linux 9 or Ubuntu Jammy.
1818

1919
* access to the test pulp server on SMS lab
2020

doc/source/contributor/environments/ci-builder.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Access the host via SSH.
2525

2626
Install package dependencies.
2727

28-
On CentOS:
28+
On Rocky Linux:
2929

3030
.. parsed-literal::
3131

doc/source/operations/tempest.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ To install Docker on Ubuntu:
6565
sudo apt-get update
6666
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
6767
68-
Installing Docker on CentOS/Rocky:
68+
Installing Docker on Rocky:
6969

7070
.. code-block:: bash
7171
@@ -99,9 +99,9 @@ Build a Kayobe automation image:
9999
100100
git submodule init
101101
git submodule update
102-
# If running on Ubuntu, the fact cache can confuse Kayobe in the CentOS-based container
102+
# If running on Ubuntu, the fact cache can confuse Kayobe in the Rocky-based container
103103
mv etc/kayobe/facts{,-old}
104-
sudo DOCKER_BUILDKIT=1 docker build --file .automation/docker/kayobe/Dockerfile --tag kayobe:latest .
104+
sudo DOCKER_BUILDKIT=1 docker build --build-arg BASE_IMAGE=rockylinux:9 --file .automation/docker/kayobe/Dockerfile --tag kayobe:latest .
105105
106106
Configuration
107107
=============

etc/kayobe/environments/aufn-ceph/configure-local-networking.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if ! sudo ip l show brcloud >/dev/null 2>&1; then
4343
sudo ip l set brcloud up
4444
fi
4545

46-
# On CentOS 8, bridges without a port are DOWN, which causes network
46+
# On Rocky Linux, bridges without a port are DOWN, which causes network
4747
# configuration to fail. Add a dummy interface and plug it into the bridge.
4848
for i in mgmt prov cloud; do
4949
if ! sudo ip l show dummy-$i >/dev/null 2>&1; then

etc/kayobe/environments/aufn-ceph/seed-hypervisor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ seed_hypervisor_extra_network_interfaces:
1010
- "{{ public_net_name }}"
1111
- "{{ external_net_names[0] }}"
1212

13-
# Workaround change to cloud-user default login name on CentOS-Stream8
13+
# Workaround change to cloud-user default login name on Rocky Linux
1414
seed_hypervisor_bootstrap_user: "{{ lookup('env', 'USER') }}"

0 commit comments

Comments
 (0)