Skip to content

Commit

Permalink
Add missing -r option
Browse files Browse the repository at this point in the history
-r option is required to parse the path as requirements file
  • Loading branch information
seunghun1ee committed Aug 30, 2024
1 parent da731a1 commit b35a903
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/overcloud-host-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
python3 -m venv kayobe &&
source kayobe/bin/activate &&
pip install -U pip &&
pip install ../src/kayobe-config/requirements.txt
pip install -r ../src/kayobe-config/requirements.txt
- name: Install terraform
uses: hashicorp/setup-terraform@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/overcloud-host-image-promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
python3 -m venv kayobe &&
source kayobe/bin/activate &&
pip install -U pip &&
pip install ../src/kayobe-config/requirements.txt
pip install -r ../src/kayobe-config/requirements.txt
- name: Bootstrap the control host
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/overcloud-host-image-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
python3 -m venv kayobe &&
source kayobe/bin/activate &&
pip install -U pip &&
pip install ../src/kayobe-config/requirements.txt
pip install -r ../src/kayobe-config/requirements.txt
- name: Bootstrap the control host
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stackhpc-container-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,14 @@ jobs:
python3 -m venv kayobe &&
source kayobe/bin/activate &&
pip install -U pip &&
pip install ../src/kayobe-config/requirements.txt
pip install -r ../src/kayobe-config/requirements.txt
# Required for Pulp auth proxy deployment and Docker registry login.
# Normally installed during host configure.
- name: Install Docker Python SDK
run: |
sudo pip install docker 'requests<2.32.0'
- name: Get Kolla tag
id: write-kolla-tag
run: echo "kolla-tag=${{ needs.generate-tag.outputs.openstack_release }}-${{ matrix.distro }}-${{ matrix.distro == 'rocky' && '9' || 'jammy' }}-${{ needs.generate-tag.outputs.datetime_tag }}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion doc/source/contributor/environments/ci-aio.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Create a virtual environment and install Kayobe:
python3 -m venv kayobe
source kayobe/bin/activate
pip install -U pip
pip install ../src/kayobe-config/requirements.txt
pip install -r ../src/kayobe-config/requirements.txt
popd
Add initial network configuration:
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 @@ -70,7 +70,7 @@ Create a virtual environment and install Kayobe:
python3 -m venv kayobe
source kayobe/bin/activate
pip install -U pip
pip install ../src/kayobe-config/requirements.txt
pip install -r ../src/kayobe-config/requirements.txt
popd
Add initial network configuration:
Expand Down
2 changes: 1 addition & 1 deletion etc/kayobe/environments/ci-aio/automated-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ set +u
source kayobe/bin/activate
set -u
pip install -U pip
pip install ../src/kayobe-config/requirements.txt
pip install -r ../src/kayobe-config/requirements.txt
popd

if ! ip l show breth1 >/dev/null 2>&1; then
Expand Down

0 comments on commit b35a903

Please sign in to comment.