Skip to content

Commit 54603ed

Browse files
committed
[distribution] 2.27.2 release
1 parent 5c6405d commit 54603ed

9 files changed

+21
-7
lines changed

stable/distribution/CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# JFrog Distribution Chart Changelog
22
All changes to this project chart be documented in this file.
33

4-
## [102.26.1] - May 29, 2024
4+
## [102.27.2] - Oct 02, 2024
5+
* Adding distribution service with http-router port [GH-1872](https://github.com/jfrog/charts/pull/1872)
6+
7+
## [102.26.1] - June 20, 2024
58
* Fix the indentation of the commented-out sections in the values.yaml file
9+
* Fixed #adding colon in image registry which breaks deployment [GH-1892](https://github.com/jfrog/charts/pull/1892)
10+
* Fixed sizing file names
611

712
## [102.25.0] - May 16, 2024
813
* Update postgresql tag version to `15.6.0-debian-12-r5`

stable/distribution/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 2.26.1
2+
appVersion: 2.27.2
33
dependencies:
44
- condition: postgresql.enabled
55
name: postgresql
@@ -19,4 +19,4 @@ name: distribution
1919
sources:
2020
- https://github.com/jfrog/charts
2121
type: application
22-
version: 102.26.1
22+
version: 102.27.2

stable/distribution/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JFrog Distribution Helm Chart
22

3-
**IMPORTANT!** Our Helm Chart docs have moved to our main documentation site. Below you will find the basic instructions for installing Distribution. For all other information, refer to [Installing Distribution](https://www.jfrog.com/confluence/display/JFROG/Installing+Distribution).
3+
**IMPORTANT!** Our Helm Chart docs have moved to our main documentation site. Below you will find the basic instructions for installing Distribution. For all other information, refer to [Installing Distribution](https://jfrog.com/help/r/jfrog-installation-setup-documentation/installing-distribution).
44

55
## Prerequisites Details
66
* Kubernetes 1.19+
66.1 KB
Loading

stable/distribution/templates/_helpers.tpl

+8
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,14 @@ Resolve customSidecarContainers value
191191
{{- end -}}
192192
{{- end -}}
193193

194+
{{/*
195+
Return the proper distribution app version
196+
*/}}
197+
{{- define "distribution.app.version" -}}
198+
{{- $tag := (splitList ":" ((include "distribution.getImageInfoByValue" (list . "distribution" )))) | last | toString -}}
199+
{{- printf "%s" $tag -}}
200+
{{- end -}}
201+
194202
{{/*
195203
Return the proper distribution chart image names
196204
*/}}

stable/distribution/templates/distribution-statefulset.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ metadata:
88
heritage: {{ .Release.Service }}
99
release: {{ .Release.Name }}
1010
component: {{ .Values.distribution.name }}
11+
version: {{ include "distribution.app.version" . }}
1112
{{- with .Values.distribution.labels }}
1213
{{ toYaml . | indent 4 }}
1314
{{- end }}

stable/distribution/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ initContainers:
4747
image:
4848
registry: releases-docker.jfrog.io
4949
repository: ubi9/ubi-minimal
50-
tag: 9.4.949.1716471857
50+
tag: 9.4.1227
5151
pullPolicy: IfNotPresent
5252
resources:
5353
requests:
@@ -562,7 +562,7 @@ router:
562562
image:
563563
registry: releases-docker.jfrog.io
564564
repository: jfrog/router
565-
tag: 7.118.0
565+
tag: 7.134.1
566566
pullPolicy: IfNotPresent
567567
serviceRegistry:
568568
## Service registry (Access) TLS verification skipped if enabled
@@ -642,7 +642,7 @@ observability:
642642
image:
643643
registry: releases-docker.jfrog.io
644644
repository: jfrog/observability
645-
tag: 1.29.0
645+
tag: 1.31.1
646646
pullPolicy: IfNotPresent
647647
internalPort: 8036
648648
resources: {}

0 commit comments

Comments
 (0)