Skip to content

Commit 4959b5d

Browse files
rahulsadanandanchukka
authored andcommitted
[Catalog] 1.25.2 - Release
1 parent 596b59e commit 4959b5d

4 files changed

Lines changed: 28 additions & 4 deletions

File tree

stable/catalog/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# JFrog Catalog Chart Changelog
22
All changes to this chart will be documented in this file.
33

4-
[101.23.1] - May 5, 2025
4+
[101.25.2] - May 5, 2025
55
Updated router version to 7.165.2
66
Fix the issue where `router.serviceRegistry.insecure` is not being applied in the system yaml.
77

stable/catalog/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 1.23.1
2+
appVersion: 1.25.2
33
dependencies:
44
- name: jfrog-common
55
repository: https://charts.jfrog.io/
@@ -16,4 +16,4 @@ name: catalog
1616
sources:
1717
- https://github.com/jfrog/charts
1818
type: application
19-
version: 101.23.1
19+
version: 101.25.2

stable/catalog/files/system.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ shared:
66
database:
77
type: {{ .Values.database.type }}
88
driver: {{ .Values.database.driver }}
9+
{{- if .Values.cache.enabled }}
10+
cache:
11+
enabled: {{ .Values.cache.enabled }}
12+
connectionString: {{ tpl .Values.cache.connectionString . | quote }}
13+
{{- if .Values.global.valkey.password }}
14+
parameters: mode=single;password={{ .Values.global.valkey.password }}
15+
{{- else }}
16+
parameters: mode=single;password={{ .Values.cache.password }}
17+
{{- end }}
18+
defaultKeyExpirationSecs: 3600
19+
maxWarmupKeys: 1000
20+
warmupPoolSize: 10
21+
warmupDBMaxOpenConns: 10
22+
warmupDBMaxIdleConns: 5
23+
invalidationIntervalSecs: 60
24+
{{- end }}
925
catalog:
1026
mode: "singleTenant"
1127
central:

stable/catalog/values.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@ image:
5353
##
5454
pullSecrets: []
5555

56+
## This will be used to enable the cache feature.
57+
## If you want to use the cache feature, you need to enable cache, set the password and set the connectionString.
58+
## The connectionString is the connection string for the cache database. Example: redis:/catalog-valkey-primary:6379
59+
cache:
60+
enabled: false
61+
connectionString: ""
62+
password: ""
63+
5664
## certificates added to this secret will be copied to $JFROG_HOME/catalog/var/etc/security/keys/trusted directory
5765
customCertificates:
5866
enabled: false
@@ -298,7 +306,7 @@ router:
298306
image:
299307
registry: releases-docker.jfrog.io
300308
repository: jfrog/router
301-
tag: 7.165.2
309+
tag: 7.179.1
302310
imagePullPolicy: IfNotPresent
303311
serviceRegistry:
304312
## Service registry (Access) TLS verification skipped if enabled

0 commit comments

Comments
 (0)