Skip to content

Commit

Permalink
[jfrog-platform] 10.15.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chukka committed Sep 15, 2023
1 parent 201bffc commit 9d869b5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
3 changes: 3 additions & 0 deletions stable/jfrog-platform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# JFrog Platform Chart Changelog (GA releases only)
All changes to this chart will be documented in this file.

## [10.15.1] - Sep 15, 2023
* Reverted - Enabled `unifiedSecretInstallation` by default [GH-1819](https://github.com/jfrog/charts/issues/1819)

## [10.15.0] - Sep 12, 2023
**IMPORTANT**
* Enabled `unifiedSecretInstallation` to true by default,which enables single unified secret holding all of each product secrets
Expand Down
2 changes: 1 addition & 1 deletion stable/jfrog-platform/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ name: jfrog-platform
sources:
- https://github.com/jfrog/charts
type: application
version: 10.15.0
version: 10.15.1
6 changes: 4 additions & 2 deletions stable/jfrog-platform/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ Custom init container for Postgres setup
name: {{ tpl .Values.database.secrets.user.name . }}
key: {{ tpl .Values.database.secrets.user.key . }}
{{- else if .Values.database.user }}
name: {{ .Chart.Name }}-unified-secret
{{- $chartFullName := printf "%s.fullname" .Chart.Name }}
name: {{ include $chartFullName . }}-database-creds
key: db-user
{{- end }}
- name: DB_PASSWORD
Expand All @@ -182,7 +183,8 @@ Custom init container for Postgres setup
name: {{ tpl .Values.database.secrets.password.name . }}
key: {{ tpl .Values.database.secrets.password.key . }}
{{- else if .Values.database.password }}
name: {{ .Chart.Name }}-unified-secret
{{- $chartFullName := printf "%s.fullname" .Chart.Name }}
name: {{ include $chartFullName . }}-database-creds
key: db-password
{{- end }}
- name: PGPASSWORD
Expand Down
13 changes: 6 additions & 7 deletions stable/jfrog-platform/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ redis:
artifactory:
enabled: true
unifiedUpgradeAllowed: true
installerInfo: '{"productId": "Helm_JFrogPlatform/{{ printf "10.15.0-%s" .Chart.AppVersion }}", "features": [ { "featureId": "Platform/{{ printf "%s-%s" "kubernetes" .Capabilities.KubeVersion.Version }}"}]}'
installerInfo: '{"productId": "Helm_JFrogPlatform/{{ printf "10.15.1-%s" .Chart.AppVersion }}", "features": [ { "featureId": "Platform/{{ printf "%s-%s" "kubernetes" .Capabilities.KubeVersion.Version }}"}]}'
postgresql:
enabled: false
waitForDatabase: false
Expand All @@ -238,7 +238,7 @@ artifactory:
mc:
enabled: true
artifactory:
unifiedSecretInstallation: true
unifiedSecretInstallation: false
# Note: For HA deployments, set replicaCount >1 (recommended 3)
replicaCount: 1
migration:
Expand All @@ -253,7 +253,7 @@ xray:
enabled: true
unifiedUpgradeAllowed: true
xray:
unifiedSecretInstallation: true
unifiedSecretInstallation: false
postgresql:
enabled: false
database:
Expand All @@ -280,20 +280,19 @@ distribution:
enabled: true
unifiedUpgradeAllowed: true
distribution:
unifiedSecretInstallation: true
unifiedSecretInstallation: false
postgresql:
enabled: false
database:
url: '{{ include "database.url" . }}'
user: distribution
password: distribution


insight:
enabled: true
unifiedUpgradeAllowed: true
insightServer:
unifiedSecretInstallation: true
unifiedSecretInstallation: false
postgresql:
enabled: false
database:
Expand All @@ -319,7 +318,7 @@ pipelines:
user: "apiuser"
password: "pipeline"
pipelines:
unifiedSecretInstallation: true
unifiedSecretInstallation: false
msg:
uiUserPassword: password
redis:
Expand Down

0 comments on commit 9d869b5

Please sign in to comment.