Skip to content

Commit 8400b30

Browse files
committed
Release kellnr 5.8.0
1 parent d666c7e commit 8400b30

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

charts/kellnr/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 4.1.2
18+
version: 4.2.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "5.7.1"
24+
appVersion: "5.8.0"

charts/kellnr/templates/config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ data:
99
KELLNR_REGISTRY__SESSION_AGE_SECONDS: {{ .Values.kellnr.registry.sessionAgeSeconds | quote }}
1010
KELLNR_REGISTRY__CACHE_SIZE: {{ .Values.kellnr.registry.cacheSize | quote }}
1111
KELLNR_REGISTRY__MAX_CRATE_SIZE: {{ .Values.kellnr.registry.maxCrateSize | quote }}
12+
KELLNR_REGISTRY__MAX_DB_CONNECTIONS: {{ .Values.kellnr.registry.maxDbConnections | quote }}
1213
KELLNR_REGISTRY__AUTH_REQUIRED: {{ .Values.kellnr.registry.authRequired | quote }}
14+
KELLNR_REGISTRY__REQUIRED_CRATE_FIELDS: {{ .Values.kellnr.registry.requiredCrateFields | quote }}
15+
KELLNR_REGISTRY__NEW_CRATES_RESTRICTED: {{ .Values.kellnr.registry.newCratesRestricted | quote }}
1316
KELLNR_DOCS__ENABLED: {{ .Values.kellnr.docs.enabled | quote }}
1417
KELLNR_DOCS__MAX_SIZE: {{ .Values.kellnr.docs.maxSize | quote }}
1518
KELLNR_PROXY__ENABLED: {{ .Values.kellnr.proxy.enabled | quote }}

charts/kellnr/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ kellnr:
6868
cacheSize: 1000
6969
maxCrateSize: 10
7070
authRequired: false
71+
requiredCrateFields: "" # Comma-separated list of fields, e.g. "description,license,repository"
72+
newCratesRestricted: false
73+
maxDbConnections: 0 # 0 means no limit
7174
docs:
7275
enabled: false
7376
maxSize: 100

0 commit comments

Comments
 (0)