Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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 helm-chart/renku/templates/data-service/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ spec:
value: {{ .Values.dataService.imageBuilders.strategyName | default "" | quote }}
- name: BUILD_PUSH_SECRET_NAME
value: {{ .Values.dataService.imageBuilders.pushSecretName | default "" | quote }}
{{- if .Values.dataService.imageBuilders.insecureRegistries }}
- name: BUILD_INSECURE_REGISTRIES
value: .Values.dataService.imageBuilders.insecureRegistries
{{- end }}
- name: BUILD_RUN_RETENTION_AFTER_FAILED_SECONDS
value: {{ .Values.dataService.imageBuilders.buildRunRetentionAfterFailedSeconds | default "" | quote }}
- name: BUILD_RUN_RETENTION_AFTER_SUCCEEDED_SECONDS
Expand Down
2 changes: 2 additions & 0 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1243,6 +1243,8 @@ dataService:
runImage: "ghcr.io/swissdatasciencecenter/renku-frontend-buildpacks/run-image:0.4.0"
## The name of the BuildStrategy to use for image builds.
strategyName: renku-buildpacks-v3
## Comma separated list of insecure registries (e.g. http, self-signed certificate)
insecureRegistries: ""
Comment thread
sgaist marked this conversation as resolved.
## Configuration overrides for specific target platforms
platformOverrides: {}
# linux/arm64:
Expand Down
Loading