Skip to content

Commit 584fe14

Browse files
authored
Python Kopf s2i version 1.35.5 (#582)
- kopf version 1.35.5 - kubernetes python library 24.2.0 - pykube-ng python library 22.6.0 - OpenShift Client 4.10.20 - Helm 3.9.0 - Fix to s2i requirements resolution within odo execution
1 parent 8ea9ed0 commit 584fe14

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

build-s2i-python-kopf/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM registry.access.redhat.com/ubi8/python-39:latest
22

33
MAINTAINER Johnathan Kupferer <[email protected]>
44

5-
ENV OPENSHIFT_CLIENT_VERSION=4.10.9 \
6-
HELM_VERSION=3.8.2
5+
ENV OPENSHIFT_CLIENT_VERSION=4.10.20 \
6+
HELM_VERSION=3.9.0
77

88
LABEL io.k8s.description="Python Kopf - Kubernetes Operator Framework" \
99
io.k8s.display-name="Kopf Operator" \
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
kopf==1.35.4
2-
kubernetes==23.6.0
1+
kopf==1.35.5
2+
kubernetes==24.2.0
33
openshift==0.13.1
4-
pykube-ng==22.1.0
4+
pykube-ng==22.6.0

build-s2i-python-kopf/s2i/assemble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ else
2020
cp --preserve=mode --recursive operator /opt/app-root/
2121
fi
2222

23-
if [[ -s /opt/app-root/src/requirements.txt ]]; then
23+
if [[ -s requirements.txt ]]; then
2424
pip3 install --upgrade --cache-dir /tmp/.pip-cache -r requirements.txt
2525
rm -rf /tmp/.pip-cache
2626
fi

build-s2i-python-kopf/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"v1.35.4"}
1+
{"version":"v1.35.5"}

0 commit comments

Comments
 (0)