-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update YQ everywhere and deploy-renku wants split values files.
- deploy-renku now expects two files for the values of the Helm chart to deploy: one is the secrets that are stored in GH organization, the other is a file passed to the action, meant to be in the Renku repository itself. - YQ has been updated to version 4.x everywhere and the commands fixed according to the need of the new version - The base Docker image have also been updated - YQ is now installed in all actions through the Alpine package directly
- Loading branch information
Showing
8 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
FROM python:3.7-alpine3.10 | ||
FROM python:3.9-alpine3.18 | ||
|
||
# install dependencies | ||
RUN apk add --no-cache git bash && \ | ||
apk add --no-cache --virtual .build-deps gcc g++ make && \ | ||
wget -O /usr/bin/yq "https://github.com/mikefarah/yq/releases/download/3.1.1/yq_linux_amd64" && \ | ||
chmod a+x /usr/bin/yq && \ | ||
pip install -U pip chartpress==0.3.2 six==1.16.0 && \ | ||
apk del .build-deps | ||
RUN apk add --no-cache git bash yq && \ | ||
pip install -U pip \ | ||
chartpress==1.0.0 \ | ||
'ruamel.yaml<0.17.10' \ | ||
'ruamel.yaml.clib<0.2.4' | ||
|
||
COPY update-upstream.sh / | ||
ENTRYPOINT [ "/update-upstream.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.15 | ||
FROM alpine:3.18 | ||
|
||
RUN apk add --no-cache yq | ||
COPY entrypoint.sh / | ||
|