Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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: 1 addition & 1 deletion charts/kellnr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 5.0.0
version: 5.1.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
Expand Down
3 changes: 3 additions & 0 deletions charts/kellnr/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ data:
KELLNR_S3__ALLOW_HTTP: {{ .Values.kellnr.s3.allowHttp | quote }}
KELLNR_S3__CRATES_BUCKET: {{ .Values.kellnr.s3.crates_bucket | quote }}
KELLNR_S3__CRATESIO_BUCKET: {{ .Values.kellnr.s3.cratesio_bucket | quote }}
KELLNR_S3__TOOLCHAIN_BUCKET: {{ .Values.kellnr.s3.toolchain_bucket | quote }}
KELLNR_TOOLCHAIN__ENABLED: {{ .Values.kellnr.toolchain.enabled | quote }}
KELLNR_TOOLCHAIN__MAX_SIZE: {{ .Values.kellnr.toolchain.maxSize | quote }}
# OAuth2/OpenID Connect
KELLNR_OAUTH2__ENABLED: {{ .Values.kellnr.oauth2.enabled | quote }}
{{- if .Values.kellnr.oauth2.issuerUrl }}
Expand Down
3 changes: 3 additions & 0 deletions charts/kellnr/templates/secret-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ stringData:
KELLNR_S3__ALLOW_HTTP: {{ .Values.kellnr.s3.allowHttp | quote }}
KELLNR_S3__CRATES_BUCKET: {{ .Values.kellnr.s3.crates_bucket | quote }}
KELLNR_S3__CRATESIO_BUCKET: {{ .Values.kellnr.s3.cratesio_bucket | quote }}
KELLNR_S3__TOOLCHAIN_BUCKET: {{ .Values.kellnr.s3.toolchain_bucket | quote }}
KELLNR_TOOLCHAIN__ENABLED: {{ .Values.kellnr.toolchain.enabled | quote }}
KELLNR_TOOLCHAIN__MAX_SIZE: {{ .Values.kellnr.toolchain.maxSize | quote }}
# OAuth2/OpenID Connect
KELLNR_OAUTH2__ENABLED: {{ .Values.kellnr.oauth2.enabled | quote }}
{{- if .Values.kellnr.oauth2.issuerUrl }}
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: true
crates_bucket: "kellnr-crates"
cratesio_bucket: "kellnr-cratesio"
toolchain_bucket: "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: "Login with SSO"

toolchain:
enabled: false
maxSize: 500

service:
api:
type: ClusterIP
Expand Down