Skip to content
Merged
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
9 changes: 9 additions & 0 deletions charts/kellnr/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,15 @@ KELLNR_OAUTH2__READ_ONLY_GROUP_VALUE: {{ .Values.kellnr.oauth2.readOnlyGroupValu
{{ if not (eq .Values.kellnr.oauth2.buttonText nil) }}
KELLNR_OAUTH2__BUTTON_TEXT: {{ .Values.kellnr.oauth2.buttonText | quote }}
{{ end }}
{{ if not (eq .Values.kellnr.toolchain.enabled nil) }}
KELLNR_TOOLCHAIN__ENABLED: {{ .Values.kellnr.toolchain.enabled | quote }}
{{ end }}
{{ if not (eq .Values.kellnr.toolchain.maxSize nil) }}
KELLNR_TOOLCHAIN__MAX_SIZE: {{ .Values.kellnr.toolchain.maxSize | quote }}
{{ end }}
{{ if not (eq .Values.kellnr.s3.toolchain_bucket nil) }}
KELLNR_S3__TOOLCHAIN_BUCKET: {{ .Values.kellnr.s3.toolchain_bucket | quote }}
{{ end }}
{{- end }}

{{/*
Expand Down
5 changes: 5 additions & 0 deletions charts/kellnr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ kellnr:
allowHttp: null # true
crates_bucket: null # "kellnr-crates"
cratesio_bucket: null # "kellnr-cratesio"
toolchain_bucket: null # "kellnr-toolchain"

# OAuth2/OpenID Connect authentication
# See https://kellnr.io/documentation for details
Expand Down Expand Up @@ -160,6 +161,10 @@ kellnr:
# Text displayed on the OAuth2 login button
buttonText: null # "Login with SSO"

toolchain:
enabled: false
maxSize: 500

service:
api:
type: ClusterIP
Expand Down