Skip to content

Add missing -r option (pip) #1252

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 1 commit into from
Sep 2, 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 .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
Loading