Skip to content

Commit 08ffe0e

Browse files
committed
[jfrog-platform] 10.19.7 release
1 parent eccc658 commit 08ffe0e

File tree

5 files changed

+17
-24
lines changed

5 files changed

+17
-24
lines changed

stable/jfrog-platform/CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# JFrog Platform Chart Changelog (GA releases only)
22
All changes to this chart will be documented in this file.
33

4-
## [10.19.7] - Oct 14, 2024
5-
* Fixed - Added podSecurityContext and containerSecurityContext for pre-upgrade-check migration hook container
4+
## [10.19.7] - Oct 23, 2024
5+
* Added podSecurityContext and containerSecurityContext for pre-upgrade-check migration hook container. [GH-1929](https://github.com/jfrog/charts/pull/1929)
6+
* Update dependency artifactory chart version to 107.90.15
7+
* Update dependency xray chart version to 103.104.18
68

79
## [10.19.6] - Oct 8, 2024
810
* Fixed typo to get fourth parameter for setupPostgres.sh [GH-1992](https://github.com/jfrog/charts/pull/1992)

stable/jfrog-platform/Chart.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ dependencies:
77
version: 11.9.3
88
- name: artifactory
99
repository: https://charts.jfrog.io/
10-
version: 107.90.14
10+
version: 107.90.15
1111
- name: xray
1212
repository: https://charts.jfrog.io/
13-
version: 103.104.17
13+
version: 103.104.18
1414
- name: distribution
1515
repository: https://charts.jfrog.io/
1616
version: 102.26.1
@@ -20,5 +20,5 @@ dependencies:
2020
- name: pipelines
2121
repository: https://charts.jfrog.io/
2222
version: 101.59.7
23-
digest: sha256:a6071a02ef3029d1aba4ed221e61566dc2a098e2b4c6b85108b839d5fdf5d89a
24-
generated: "2024-10-08T17:20:56.179314+05:30"
23+
digest: sha256:b2d758a515ff07dd7f9778800680a86f7ff5f1c1fcce531eeb0fd53d75847c77
24+
generated: "2024-10-23T12:31:23.797688+05:30"

stable/jfrog-platform/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 7.90.14
2+
appVersion: 7.90.15
33
dependencies:
44
- condition: postgresql.enabled
55
name: postgresql
@@ -12,11 +12,11 @@ dependencies:
1212
- condition: artifactory.enabled
1313
name: artifactory
1414
repository: https://charts.jfrog.io/
15-
version: 107.90.14
15+
version: 107.90.15
1616
- condition: xray.enabled
1717
name: xray
1818
repository: https://charts.jfrog.io/
19-
version: 103.104.17
19+
version: 103.104.18
2020
- condition: distribution.enabled
2121
name: distribution
2222
repository: https://charts.jfrog.io/

stable/jfrog-platform/files/setupPostgres.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ setupDB "${DB_USERNAME}" "${DB_PASSWORD}" "${DB_NAME}" || true
124124

125125
log "$POSTGRES_LABEL setup is now complete."
126126

127-
exit 0
127+
exit 0

stable/jfrog-platform/values.yaml

+5-14
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,6 @@ rabbitmq:
103103
image:
104104
repository: bitnami/rabbitmq
105105
tag: 3.12.10-debian-11-r1
106-
podSecurityContext:
107-
enabled: false
108-
containerSecurityContext:
109-
enabled: false
110106
auth:
111107
## Enable encryption to rabbitmq
112108
## ref: https://www.rabbitmq.com/ssl.html
@@ -236,7 +232,7 @@ rabbitmq:
236232
artifactory:
237233
enabled: true
238234
unifiedUpgradeAllowed: true
239-
installerInfo: '{"productId":"Helm_JFrogPlatform/{{ printf "10.19.6-%s" .Chart.AppVersion }}","features":[{"featureId":"Platform/{{ printf "%s-%s" "kubernetes" .Capabilities.KubeVersion.Version }}"},{"featureId":"Database/{{ .Values.database.type }}"},{"featureId":"Nginx_Enabled/{{ .Values.nginx.enabled }}"},{"featureId":"ArtifactoryPersistence_Type/{{ .Values.artifactory.persistence.type }}"},{"featureId":"SplitServicesToContainers_Enabled/{{ .Values.splitServicesToContainers }}"},{"featureId":"Filebeat_Enabled/{{ .Values.filebeat.enabled }}"},{"featureId":"ReplicaCount/{{ .Values.artifactory.replicaCount }}"}]}'
235+
installerInfo: '{"productId":"Helm_JFrogPlatform/{{ printf "10.19.7-%s" .Chart.AppVersion }}","features":[{"featureId":"Platform/{{ printf "%s-%s" "kubernetes" .Capabilities.KubeVersion.Version }}"},{"featureId":"Database/{{ .Values.database.type }}"},{"featureId":"Nginx_Enabled/{{ .Values.nginx.enabled }}"},{"featureId":"ArtifactoryPersistence_Type/{{ .Values.artifactory.persistence.type }}"},{"featureId":"SplitServicesToContainers_Enabled/{{ .Values.splitServicesToContainers }}"},{"featureId":"Filebeat_Enabled/{{ .Values.filebeat.enabled }}"},{"featureId":"ReplicaCount/{{ .Values.artifactory.replicaCount }}"}]}'
240236
postgresql:
241237
enabled: false
242238
waitForDatabase: false
@@ -246,11 +242,6 @@ artifactory:
246242
url: '{{ include "database.url" . }}'
247243
user: artifactory
248244
password: artifactory
249-
ingress:
250-
enabled: false
251-
nginx:
252-
service:
253-
type: ""
254245
# Note: For artifactory Pro license, mission-control is not supported, Hence, set mc.enabled: false
255246
# Note: mission-control is disabled by default, this is only available for E+ customers, and can be enabled by setting mc.enabled: true
256247
mc:
@@ -368,10 +359,6 @@ preUpgradeHook:
368359
repository: bitnami/kubectl
369360
tag: 1.24.12
370361
pullPolicy: IfNotPresent
371-
podSecurityContext:
372-
enabled: false
373-
containerSecurityContext:
374-
enabled: false
375362
resources:
376363
requests:
377364
cpu: 5m
@@ -380,3 +367,7 @@ preUpgradeHook:
380367
cpu: 1
381368
memory: 1Gi
382369
tolerations: []
370+
podSecurityContext:
371+
enabled: false
372+
containerSecurityContext:
373+
enabled: false

0 commit comments

Comments
 (0)