Skip to content

zed tempest docs #970

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 1, 2024
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 doc/source/contributor/environments/aufn-ceph.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This environment creates a Universe-from-nothing_-style deployment of Kayobe con
Prerequisites
=============

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

* access to the test pulp server on SMS lab

Expand Down
2 changes: 1 addition & 1 deletion doc/source/contributor/environments/ci-builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Access the host via SSH.

Install package dependencies.

On CentOS:
On Rocky Linux:

.. parsed-literal::

Expand Down
6 changes: 3 additions & 3 deletions doc/source/operations/tempest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ To install Docker on Ubuntu:
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Installing Docker on CentOS/Rocky:
Installing Docker on Rocky:

.. code-block:: bash

Expand Down Expand Up @@ -99,9 +99,9 @@ Build a Kayobe automation image:

git submodule init
git submodule update
# If running on Ubuntu, the fact cache can confuse Kayobe in the CentOS-based container
# If running on Ubuntu, the fact cache can confuse Kayobe in the Rocky-based container
mv etc/kayobe/facts{,-old}
sudo DOCKER_BUILDKIT=1 docker build --file .automation/docker/kayobe/Dockerfile --tag kayobe:latest .
sudo DOCKER_BUILDKIT=1 docker build --build-arg BASE_IMAGE=rockylinux:9 --file .automation/docker/kayobe/Dockerfile --tag kayobe:latest .

Configuration
=============
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if ! sudo ip l show brcloud >/dev/null 2>&1; then
sudo ip l set brcloud up
fi

# On CentOS 8, bridges without a port are DOWN, which causes network
# On Rocky Linux, bridges without a port are DOWN, which causes network
# configuration to fail. Add a dummy interface and plug it into the bridge.
for i in mgmt prov cloud; do
if ! sudo ip l show dummy-$i >/dev/null 2>&1; then
Expand Down
2 changes: 1 addition & 1 deletion etc/kayobe/environments/aufn-ceph/seed-hypervisor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ seed_hypervisor_extra_network_interfaces:
- "{{ public_net_name }}"
- "{{ external_net_names[0] }}"

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