Skip to content

Commit

Permalink
Update helm and k8s version for Python CI pipeline.
Browse files Browse the repository at this point in the history
Use alpine base image for binary builder.

Signed-off-by: Md Soharab Ansari <soharab.ansari@infracloud.io>
  • Loading branch information
soharab-ic committed Aug 23, 2024
1 parent dd00fea commit 714c63f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/environment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -284,14 +284,14 @@ jobs:
unset RUNTIME_PORT
popd
- name: Helm
uses: Azure/setup-helm@v1
uses: Azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
with:
version: v3.3.4
version: v3.13.0
- name: Kind Clutser
uses: engineerd/setup-kind@v0.5.0
with:
image: kindest/node:v1.21.1
version: v0.11.1
image: kindest/node:v1.25.16
version: v0.23.0
config: kind.yaml
- name: Base Setup
run: |
Expand Down
6 changes: 5 additions & 1 deletion binary/builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
ARG BUILDER_IMAGE=fission/builder:latest
FROM ${BUILDER_IMAGE}

ADD build.sh /usr/local/bin/build
FROM alpine:3.20

COPY --from=0 /builder /builder

ADD build.sh /usr/local/bin/build

0 comments on commit 714c63f

Please sign in to comment.