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
2 changes: 2 additions & 0 deletions helm-chart/renku/templates/data-service/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ spec:
value: {{ .Values.dataService.trustedProxies.proxiesCount | default "" | quote }}
- name: REAL_IP_HEADER
value: {{ .Values.dataService.trustedProxies.realIpHeader | default "" | quote }}
- name: APPS_ENABLED
value: {{ .Values.apps.enabled | quote }}
- name: IMAGE_BUILDERS_ENABLED
value: {{ .Values.dataService.imageBuilders.enabled | quote }}
- name: BUILD_OUTPUT_IMAGE_PREFIX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ spec:
value: {{ .Values.posthog.enabled | quote }}
- name: LOG_FORMAT_STYLE
value: {{ .Values.logging.logFormatStyle | quote }}
- name: APPS_ENABLED
value: {{ .Values.apps.enabled | quote }}
- name: IMAGE_BUILDERS_ENABLED
value: {{ .Values.dataService.imageBuilders.enabled | quote }}
- name: KUBERNETES_NAMESPACE
Expand Down
12 changes: 12 additions & 0 deletions helm-chart/renku/templates/data-service/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ rules:
- get
- watch
{{- end }}
{{- if .Values.apps.enabled }}
- apiGroups:
- serving.knative.dev
resources:
- services
verbs:
- create
- get
- list
- patch
- delete
{{- end }}
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
Expand Down
10 changes: 10 additions & 0 deletions helm-chart/renku/templates/data-service/rbac_k8s_watcher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ rules:
- get
- watch
{{- end }}
{{- if .Values.apps.enabled }}
- apiGroups:
- serving.knative.dev
resources:
- services
verbs:
- list
- get
- watch
{{- end }}
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
Expand Down
13 changes: 7 additions & 6 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,9 @@ alerts:
## Client secret for the Alertmanager webhook OIDC client
## Will be auto-generated if not provided
clientSecret:
## Apps configuration
apps:
enabled: false
## Logging configuration (applied to all services that support it)
logging:
## Possible values are "json" and "plain". This defaults to "plain" if it's not set or any other value is provided.
Expand Down Expand Up @@ -823,8 +826,7 @@ dlf-chart:
enabled: false
dataset-operator-chart:
enabled: true
csi-rclone:
{}
csi-rclone: {}
# This section is only relevant if you are installing csi-rclone as part of Renku
## Name of the csi storage class to use for RClone/Cloudstorage. Should be unique per cluster.
# storageClassName: csi-rclone
Expand Down Expand Up @@ -885,12 +887,12 @@ notebooks:
## '["https://domain-a.example.org/*", "https://domain-b.example.net/*"]'
## Each URI should follow the format expected by Keycloak in the Redirect
## URIs field of a keycloak client.
extraRedirectUris: '[]'
extraRedirectUris: "[]"
## This value is a yaml string of a json list of URIs strings, i.e.
## '["https://domain-a.example.org/*", "https://domain-b.example.net/*"]'
## Each URI should follow the format expected by Keycloak in the Web Origins
## field of a keycloak client.
extraWebOrigins: '[]'
extraWebOrigins: "[]"
sessionIngress:
host:
## If you want to use the default cluster tls cert, set the flag below to true.
Expand Down Expand Up @@ -1256,8 +1258,7 @@ dataService:
## The name of the BuildStrategy to use for image builds.
strategyName: renku-buildpacks-v3
## Configuration overrides for specific target platforms
platformOverrides:
{}
platformOverrides: {}
# linux/arm64:
# builderImage: "ghcr.io/swissdatasciencecenter/renku-frontend-buildpacks/cuda-selector:0.5.1"
# runImage: "ghcr.io/swissdatasciencecenter/renku-frontend-buildpacks/cuda-run-image:0.5.1"
Expand Down
Loading