Skip to content
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

Use stable/2024.2 branch #183

Open
wants to merge 1 commit into
base: stable/2024.2
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ already logged in (e.g. ``ssh rocky@<ip>``, or ``ssh ubuntu@<ip>``).
git clone https://github.com/stackhpc/beokay.git

# Use Beokay to bootstrap your control host.
[[ -d deployment ]] || beokay/beokay.py create --base-path ~/deployment --kayobe-repo https://opendev.org/openstack/kayobe.git --kayobe-branch master --kayobe-config-repo https://github.com/stackhpc/a-universe-from-nothing.git --kayobe-config-branch master
[[ -d deployment ]] || beokay/beokay.py create --base-path ~/deployment --kayobe-repo https://opendev.org/openstack/kayobe.git --kayobe-branch stable/2024.2 --kayobe-config-repo https://github.com/stackhpc/a-universe-from-nothing.git --kayobe-config-branch stable/2024.2

# Clone the Tenks repository.
cd ~/deployment/src
Expand Down Expand Up @@ -501,7 +501,7 @@ OpenStack venv:
~/deployment/venvs/os-venv/bin/activate

# Install barbicanclient
pip install python-barbicanclient -c https://releases.openstack.org/constraints/upper/master
pip install python-barbicanclient -c https://releases.openstack.org/constraints/upper/2024.2

# Source the OpenStack environment variables
source ~/deployment/src/kayobe-config/etc/kolla/public-openrc.sh
Expand Down
2 changes: 1 addition & 1 deletion a-universe-from-nothing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if $(which dnf 2>/dev/null >/dev/null); then
else
PYTHON_ARG=""
fi
[[ -d deployment ]] || beokay/beokay.py create --base-path ~/deployment --kayobe-repo https://opendev.org/openstack/kayobe.git --kayobe-branch master --kayobe-config-repo https://github.com/stackhpc/a-universe-from-nothing.git --kayobe-config-branch master $PYTHON_ARG
[[ -d deployment ]] || beokay/beokay.py create --base-path ~/deployment --kayobe-repo https://opendev.org/openstack/kayobe.git --kayobe-branch stable/2024.2 --kayobe-config-repo https://github.com/stackhpc/a-universe-from-nothing.git --kayobe-config-branch stable/2024.2 $PYTHON_ARG

# Clone the Tenks repository.
cd ~/deployment/src
Expand Down
2 changes: 1 addition & 1 deletion init-runonce.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [[ ! -d ~/deployment/venvs/os-venv ]]; then
/usr/bin/python3 -m venv ~/deployment/venvs/os-venv
fi
~/deployment/venvs/os-venv/bin/pip install -U pip
~/deployment/venvs/os-venv/bin/pip install python-openstackclient -c https://releases.openstack.org/constraints/upper/master
~/deployment/venvs/os-venv/bin/pip install python-openstackclient -c https://releases.openstack.org/constraints/upper/2024.2

parent="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
init_runonce=$parent/../kolla-ansible/tools/init-runonce
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ skipsdist = True
[testenv]
install_command = pip install {opts} {packages}
deps =
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
-c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/2024.2}
-r{toxinidir}/test-requirements.txt

[testenv:pep8]
Expand Down