Skip to content
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

### Fixed

## [4.13.1] - 2026-07-30
### Fixed
- Fix jenkins agents python issues with UV ([#1167](https://github.com/opendevstack/ods-quickstarters/pull/1167))

## [4.13.0] - 2026-06-30
### Added
- Added config-rs to rust template ([#1162](https://github.com/opendevstack/ods-quickstarters/issues/1162))
Expand Down
3 changes: 2 additions & 1 deletion common/jenkins-agents/python/docker/Dockerfile.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ENV PYTHONUNBUFFERED=1 \
PYTHONIOENCODING=UTF-8 \
UV_CA_CERTIFICATE=/etc/ssl/certs/ca-bundle.crt \
PIP_CERT=/etc/ssl/certs/ca-bundle.crt \
PIP_BREAK_SYSTEM_PACKAGES=1 \
PATH=$HOME/.local/bin:$JAVA_HOME/bin:$PATH \
UV_VERSION=0.10.9

Expand All @@ -26,7 +27,7 @@ RUN yum install -y autoconf automake gcc gcc-c++ openssl-devel libffi-devel && \
fi && \
yum -y clean all

RUN PACKAGES="virtualenv==20.26.3 setuptools==72.2.0 Cython==3.0.11 pypandoc==1.13" && \
RUN PACKAGES="pip==25.0.1 virtualenv==20.26.3 setuptools==72.2.0 Cython==3.0.11 pypandoc==1.13" && \
for pyVersion in 3.8 3.9 3.11 3.12; do \
uv python install $pyVersion && \
if [ -n "${nexusHost}" ] && [ -n "${nexusAuth}" ]; then \
Expand Down
8 changes: 4 additions & 4 deletions common/jenkins-agents/terraform-2306/docker/Dockerfile.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ RUN for pyVersion in 3.8 3.9 3.11; do \
uv python install $pyVersion && \
if [ -n "${nexusHost}" ] && [ -n "${nexusAuth}" ]; then \
uv pip install --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} --prerelease=allow \
virtualenv \
pycodestyle \
virtualenv==20.26.3 \
pycodestyle==2.12.1 \
-r /tmp/requirements.txt; \
else \
uv pip install --system --break-system-packages --python $pyVersion --prerelease=allow \
virtualenv \
pycodestyle \
virtualenv==20.26.3 \
pycodestyle==2.12.1 \
-r /tmp/requirements.txt; \
fi; \
done && \
Expand Down
8 changes: 4 additions & 4 deletions common/jenkins-agents/terraform-2408/docker/Dockerfile.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ RUN for pyVersion in 3.9 3.11 3.12; do \
uv python install $pyVersion && \
if [ -n "${nexusHost}" ] && [ -n "${nexusAuth}" ]; then \
uv pip install --system --break-system-packages --python $pyVersion --index-url https://${nexusAuth}@${nexusHost}/repository/pypi-all/simple --trusted-host ${nexusHost} --prerelease=allow \
virtualenv \
pycodestyle \
virtualenv==20.26.3 \
pycodestyle==2.12.1 \
-r /tmp/requirements.txt; \
else \
uv pip install --system --break-system-packages --python $pyVersion --prerelease=allow \
virtualenv \
pycodestyle \
virtualenv==20.26.3 \
pycodestyle==2.12.1 \
-r /tmp/requirements.txt; \
fi; \
done && \
Expand Down
Loading