Skip to content

Commit e6a2b5b

Browse files
authored
Merge pull request #653 from stackhpc/antelope-bits
Small Antelope fixes
2 parents 10d3bed + 65ad7c0 commit e6a2b5b

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ automates the manual setup steps below, and is recommended for most users.
1010
The manual setup steps are provided for reference, and for users who wish to
1111
make changes to the setup process.
1212

13+
.. warning::
14+
15+
This guide was written for the Yoga release and has not been validated for
16+
Antelope. Proceed with caution.
17+
1318
Prerequisites
1419
=============
1520

etc/kayobe/environments/aufn-ceph/a-universe-from-nothing.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
set -eu
1111

1212
BASE_PATH=~
13-
KAYOBE_BRANCH=stackhpc/yoga
14-
KAYOBE_CONFIG_BRANCH=stackhpc/yoga
13+
KAYOBE_BRANCH=stackhpc/2023.1
14+
KAYOBE_CONFIG_BRANCH=stackhpc/2023.1
1515
KAYOBE_ENVIRONMENT=aufn-ceph
1616

1717
PELICAN_HOST="10.0.0.34 pelican pelican.service.compute.sms-lab.cloud"
@@ -25,10 +25,10 @@ EOF
2525

2626
# Install git and tmux.
2727
if $(which dnf 2>/dev/null >/dev/null); then
28-
sudo dnf -y install git tmux python3-virtualenv
28+
sudo dnf -y install git tmux
2929
else
3030
sudo apt update
31-
sudo apt -y install git tmux gcc libffi-dev python3-dev python-is-python3 python3-virtualenv
31+
sudo apt -y install git tmux gcc libffi-dev python3-dev python-is-python3
3232
fi
3333

3434
# Disable the firewall.
@@ -56,7 +56,7 @@ popd
5656
mkdir -p venvs
5757
pushd venvs
5858
if [[ ! -d kayobe ]]; then
59-
virtualenv kayobe
59+
python3 -m venv kayobe
6060
fi
6161
# NOTE: Virtualenv's activate and deactivate scripts reference an
6262
# unbound variable.

etc/kayobe/environments/ci-aio/automated-setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ if [ sudo vgdisplay | grep -q lvm2 ]; then
1212
fi
1313

1414
BASE_PATH=~
15-
KAYOBE_BRANCH=stackhpc/zed
16-
KAYOBE_CONFIG_BRANCH=stackhpc/zed
15+
KAYOBE_BRANCH=stackhpc/2023.1
16+
KAYOBE_CONFIG_BRANCH=stackhpc/2023.1
1717

1818
if [[ ! -f $BASE_PATH/vault-pw ]]; then
1919
echo "Vault password file not found at $BASE_PATH/vault-pw"

etc/kayobe/stackhpc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ stackhpc_repo_rabbitmq_server_version: "{{ stackhpc_repo_distribution }}"
4747
stackhpc_repo_centos_stream_9_nfv_openvswitch_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/centos/9-stream/nfv/x86_64/openvswitch-2/{{ stackhpc_repo_centos_stream_9_nfv_openvswitch_version }}"
4848
stackhpc_repo_centos_stream_9_nfv_openvswitch_version: "{{ stackhpc_repo_distribution }}"
4949

50-
# CentOS Stream 9 - OpenStack Zed
51-
stackhpc_repo_centos_stream_9_openstack_zed_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/centos/9-stream/cloud/x86_64/openstack-zed/{{ stackhpc_repo_centos_stream_9_openstack_zed_version }}"
52-
stackhpc_repo_centos_stream_9_openstack_zed_version: "{{ stackhpc_repo_distribution }}"
50+
# CentOS Stream 9 - OpenStack Antelope
51+
stackhpc_repo_centos_stream_9_openstack_antelope_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/centos/9-stream/cloud/x86_64/openstack-antelope/{{ stackhpc_repo_centos_stream_9_openstack_antelope_version }}"
52+
stackhpc_repo_centos_stream_9_openstack_antelope_version: "{{ stackhpc_repo_distribution }}"
5353

5454
# CentOS Stream 9 - OpsTools - collectd
5555
stackhpc_repo_centos_stream_9_opstools_url: "{{ stackhpc_repo_mirror_url }}/pulp/content/centos/9-stream/opstools/x86_64/collectd-5/{{ stackhpc_repo_centos_stream_9_opstools_version }}"

0 commit comments

Comments
 (0)