Skip to content
Open
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
6 changes: 6 additions & 0 deletions helm-chart/renku/templates/data-service/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ spec:
value: {{ .Values.dataService.imageBuilders.enabled | quote }}
- name: BUILD_OUTPUT_IMAGE_PREFIX
value: {{ .Values.dataService.imageBuilders.outputImagePrefix | default "" | quote }}
- name: BUILD_OUTPUT_PRIVATE_IMAGE_PREFIX
value: {{ .Values.dataService.imageBuilders.outputPrivateImagePrefix | default "" | quote }}
- name: BUILD_BUILDER_IMAGE
value: {{ .Values.dataService.imageBuilders.builderImage | default "" | quote }}
- name: BUILD_RUN_IMAGE
Expand All @@ -138,6 +140,10 @@ spec:
value: {{ .Values.dataService.imageBuilders.strategyName | default "" | quote }}
- name: BUILD_PUSH_SECRET_NAME
value: {{ .Values.dataService.imageBuilders.pushSecretName | default "" | quote }}
- name: BUILD_PUSH_PRIVATE_SECRET_NAME
value: {{ .Values.dataService.imageBuilders.pushPrivateSecretName | default "" | quote }}
- name: BUILD_PULL_PRIVATE_SECRET_NAME
value: {{ .Values.dataService.imageBuilders.pullPrivateSecretName | default "" | quote }}
- name: BUILD_RUN_RETENTION_AFTER_FAILED_SECONDS
value: {{ .Values.dataService.imageBuilders.buildRunRetentionAfterFailedSeconds | default "" | quote }}
- name: BUILD_RUN_RETENTION_AFTER_SUCCEEDED_SECONDS
Expand Down
6 changes: 6 additions & 0 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1237,6 +1237,8 @@ dataService:
enabled: false
## The container image prefix for images built from code
outputImagePrefix: harbor.dev.renku.ch/renku-build/
## The container image prefix for images built from private code
outputPrivateImagePrefix: harbor.dev.renku.ch/renku-private-build/
## The builder image (see https://buildpacks.io/docs/for-platform-operators/concepts/builder/)
builderImage: "ghcr.io/swissdatasciencecenter/renku-frontend-buildpacks/selector:0.4.0"
## The run image (see https://buildpacks.io/docs/for-platform-operators/concepts/base-images/)
Expand All @@ -1263,6 +1265,10 @@ dataService:
# value: arm64
## The name of the secret used to push images built from code.
pushSecretName: renku-build-docker-secret
## The name of the secret used to push images built from private code.
pushPrivateSecretName: renku-build-private-docker-secret
## The name of the secret used to pull images built from private code.
pullPrivateSecretName: renku-pull-private-docker-secret
## The TTL for BuildRuns
buildRunRetentionAfterFailedSeconds: 86400
buildRunRetentionAfterSucceededSeconds: 86400
Expand Down
Loading