Skip to content

Commit

Permalink
[artifactory] 7.98.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chukka committed Nov 26, 2024
1 parent ce38620 commit 9702937
Show file tree
Hide file tree
Showing 16 changed files with 35 additions and 36 deletions.
2 changes: 1 addition & 1 deletion stable/artifactory-cpp-ce/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# JFrog Artifactory CE for C++ Chart Changelog
All changes to this chart will be documented in this file

## [107.98.7] - Feb 20, 2024
## [107.98.9] - Feb 20, 2024
* Updated `artifactory.installerInfo` content

## [107.80.0] - Feb 1, 2024
Expand Down
6 changes: 3 additions & 3 deletions stable/artifactory-cpp-ce/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: 7.98.7
appVersion: 7.98.9
dependencies:
- name: artifactory
repository: file://charts/artifactory
version: 107.98.7
version: 107.98.9
description: JFrog Artifactory CE for C++
home: https://www.jfrog.com/artifactory/
icon: https://raw.githubusercontent.com/jfrog/charts/master/stable/artifactory-cpp-ce/logo/conan.png
Expand All @@ -21,4 +21,4 @@ name: artifactory-cpp-ce
sources:
- https://github.com/jfrog/charts
type: application
version: 107.98.7
version: 107.98.9
6 changes: 4 additions & 2 deletions stable/artifactory-ha/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# JFrog Artifactory-ha Chart Changelog
All changes to this chart will be documented in this file

## [107.98.7] - Oct 02, 2024
## [107.98.9] - Nov 06, 2024
* Add support for `extraEnvironmentVariables` on filebeat Sidecar [GH-1377](https://github.com/jfrog/charts/pull/1377)
* Support for SSL offload HTTPS proto override in Nginx service (ClusterIP, LoadBalancer) layer. Introduced `nginx.service.ssloffloadForceHttps` field with boolean type. [GH-1906](https://github.com/jfrog/charts/pull/1906)
* Enable Access workers integration when artifactory.worker.enabled is true
* Added `signedUrlExpirySeconds` option to artifactory.persistence.type of `google-storage`, `google-storage-v2`, and `google-storage-v2-direct` [GH-1858](https://github.com/jfrog/charts/pull/1858)
* Added support to bootstrap jfconnect custom certs to jfconnect trusted directory
* Added fix for database credentials secret in non-unified secret installations
* Fixed the type of `.Values.artifactory.persistence.googleStorage.signedUrlExpirySeconds` in binarystore.xml from boolean to integer

## [107.96.0] - Sep 18, 2024
* Merged Artifactory sizing templates to a single file per size
Expand All @@ -29,7 +31,7 @@ All changes to this chart will be documented in this file
## [107.91.0] - July 18, 2024
* Remove X-JFrog-Override-Base-Url port when using default `443/80` ports

## [107.90.15] - July 18, 2024
## [107.90.0] - July 18, 2024
* Fixed #adding colon in image registry which breaks deployment [GH-1892](https://github.com/jfrog/charts/pull/1892)
* Added new `nginx.hosts` to use Nginx server_name directive instead of `ingress.hosts`
* Added a deprecation notice of ingress.hosts when `ngnix.enabled` is true
Expand Down
8 changes: 4 additions & 4 deletions stable/artifactory-ha/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
annotations:
artifactoryServiceVersion: 7.98.6
metadataVersion: 7.90.0
artifactoryServiceVersion: 7.98.10
metadataVersion: 7.90.4
observabilityVersion: 1.31.5
apiVersion: v2
appVersion: 7.98.7
appVersion: 7.98.9
dependencies:
- condition: postgresql.enabled
name: postgresql
Expand All @@ -25,4 +25,4 @@ name: artifactory-ha
sources:
- https://github.com/jfrog/charts
type: application
version: 107.98.7
version: 107.98.9
4 changes: 1 addition & 3 deletions stable/artifactory-ha/files/binarystore.xml
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,7 @@
<path>{{ .Values.artifactory.persistence.googleStorage.path }}</path>
<bucketExists>{{ .Values.artifactory.persistence.googleStorage.bucketExists }}</bucketExists>
{{- if .Values.artifactory.persistence.googleStorage.signedUrlExpirySeconds }}
<signedUrlExpirySeconds>true</signedUrlExpirySeconds>
{{- else }}
<signedUrlExpirySeconds>false</signedUrlExpirySeconds>
<signedUrlExpirySeconds>{{ .Values.artifactory.persistence.googleStorage.signedUrlExpirySeconds | int64 }}</signedUrlExpirySeconds>
{{- end }}
</provider>
</config>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ spec:
key: {{ tpl .Values.database.secrets.user.key . }}
{{- else if .Values.database.user }}
{{- if not .Values.artifactory.unifiedSecretInstallation }}
name: {{ template "artifactory.fullname" . }}-database-creds
name: {{ template "artifactory-ha.fullname" . }}-database-creds
{{- else }}
name: "{{ template "artifactory.unifiedSecretPrependReleaseName" . }}-unified-secret"
{{- end }}
Expand All @@ -558,7 +558,7 @@ spec:
key: {{ tpl .Values.database.secrets.password.key . }}
{{- else if .Values.database.password }}
{{- if not .Values.artifactory.unifiedSecretInstallation }}
name: {{ template "artifactory.fullname" . }}-database-creds
name: {{ template "artifactory-ha.fullname" . }}-database-creds
{{- else }}
name: "{{ template "artifactory.unifiedSecretPrependReleaseName" . }}-unified-secret"
{{- end }}
Expand All @@ -577,7 +577,7 @@ spec:
key: {{ tpl .Values.database.secrets.url.key . }}
{{- else if .Values.database.url }}
{{- if not .Values.artifactory.unifiedSecretInstallation }}
name: {{ template "artifactory.fullname" . }}-database-creds
name: {{ template "artifactory-ha.fullname" . }}-database-creds
{{- else }}
name: "{{ template "artifactory.unifiedSecretPrependReleaseName" . }}-unified-secret"
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ spec:
key: {{ tpl .Values.database.secrets.user.key . }}
{{- else if .Values.database.user }}
{{- if not .Values.artifactory.unifiedSecretInstallation }}
name: {{ template "artifactory.fullname" . }}-database-creds
name: {{ template "artifactory-ha.fullname" . }}-database-creds
{{- else }}
name: "{{ template "artifactory.unifiedSecretPrependReleaseName" . }}-unified-secret"
{{- end }}
Expand All @@ -690,7 +690,7 @@ spec:
key: {{ tpl .Values.database.secrets.password.key . }}
{{- else if .Values.database.password }}
{{- if not .Values.artifactory.unifiedSecretInstallation }}
name: {{ template "artifactory.fullname" . }}-database-creds
name: {{ template "artifactory-ha.fullname" . }}-database-creds
{{- else }}
name: "{{ template "artifactory.unifiedSecretPrependReleaseName" . }}-unified-secret"
{{- end }}
Expand All @@ -709,7 +709,7 @@ spec:
key: {{ tpl .Values.database.secrets.url.key . }}
{{- else if .Values.database.url }}
{{- if not .Values.artifactory.unifiedSecretInstallation }}
name: {{ template "artifactory.fullname" . }}-database-creds
name: {{ template "artifactory-ha.fullname" . }}-database-creds
{{- else }}
name: "{{ template "artifactory.unifiedSecretPrependReleaseName" . }}-unified-secret"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion stable/artifactory-ha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ artifactory:
bucketExists: false
useInstanceCredentials: false
enableSignedUrlRedirect: false
# signedUrlExpirySeconds: false
# signedUrlExpirySeconds: 30
## For artifactory.persistence.type aws-s3-v3, s3-storage-v3-direct, s3-storage-v3-archive
awsS3V3:
testConnection: false
Expand Down
2 changes: 1 addition & 1 deletion stable/artifactory-jcr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# JFrog Container Registry Chart Changelog
All changes to this chart will be documented in this file.

## [107.98.7] - Feb 20, 2024
## [107.98.9] - Feb 20, 2024
* Updated `artifactory.installerInfo` content

## [107.80.0] - Feb 1, 2024
Expand Down
6 changes: 3 additions & 3 deletions stable/artifactory-jcr/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: 7.98.7
appVersion: 7.98.9
dependencies:
- name: artifactory
repository: file://charts/artifactory
version: 107.98.7
version: 107.98.9
description: JFrog Container Registry
home: https://jfrog.com/container-registry/
icon: https://raw.githubusercontent.com/jfrog/charts/master/stable/artifactory-jcr/logo/jcr-logo.png
Expand All @@ -22,4 +22,4 @@ name: artifactory-jcr
sources:
- https://github.com/jfrog/charts
type: application
version: 107.98.7
version: 107.98.9
2 changes: 1 addition & 1 deletion stable/artifactory-oss/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# JFrog Artifactory OSS Chart Changelog
All changes to this chart will be documented in this file

## [107.98.7] - Feb 20, 2024
## [107.98.9] - Feb 20, 2024
* Updated `artifactory.installerInfo` content

## [107.80.0] - Feb 1, 2024
Expand Down
6 changes: 3 additions & 3 deletions stable/artifactory-oss/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: 7.98.7
appVersion: 7.98.9
dependencies:
- name: artifactory
repository: file://charts/artifactory
version: 107.98.7
version: 107.98.9
description: JFrog Artifactory OSS
home: https://www.jfrog.com/artifactory/
icon: https://raw.githubusercontent.com/jfrog/charts/master/stable/artifactory/logo/artifactory-logo.png
Expand All @@ -20,4 +20,4 @@ name: artifactory-oss
sources:
- https://github.com/jfrog/charts
type: application
version: 107.98.7
version: 107.98.9
5 changes: 3 additions & 2 deletions stable/artifactory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# JFrog Artifactory Chart Changelog
All changes to this chart will be documented in this file.

## [107.98.7] - Oct 02, 2024
## [107.98.9] - Nov 06, 2024
* Add support for `extraEnvironmentVariables` on filebeat Sidecar [GH-1377](https://github.com/jfrog/charts/pull/1377)
* Support for SSL offload HTTPS proto override in Nginx service (ClusterIP, LoadBalancer) layer. Introduced `nginx.service.ssloffloadForceHttps` field with boolean type. [GH-1906](https://github.com/jfrog/charts/pull/1906)
* Enable Access workers integration when artifactory.worker.enabled is true
* Added `signedUrlExpirySeconds` option to artifactory.persistence.type of `google-storage`, `google-storage-v2`, and `google-storage-v2-direct` [GH-1858](https://github.com/jfrog/charts/pull/1858)
* Added support to bootstrap jfconnect custom certs to jfconnect trusted directory
* Fixed the type of `.Values.artifactory.persistence.googleStorage.signedUrlExpirySeconds` in binarystore.xml from boolean to integer

## [107.96.0] - Sep 10, 2024
* Merged Artifactory sizing templates to a single file per size
Expand All @@ -25,7 +26,7 @@ All changes to this chart will be documented in this file.
## [107.91.0] - July 18, 2024
* Remove X-JFrog-Override-Base-Url port when using default `443/80` ports

## [107.90.15] - July 18, 2024
## [107.90.0] - July 18, 2024
* Fixed #adding colon in image registry which breaks deployment [GH-1892](https://github.com/jfrog/charts/pull/1892)
* Added new `nginx.hosts` to use Nginx server_name directive instead of `ingress.hosts`
* Added a deprecation notice of ingress.hosts when `ngnix.enabled` is true
Expand Down
4 changes: 2 additions & 2 deletions stable/artifactory/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 7.98.7
appVersion: 7.98.9
dependencies:
- condition: postgresql.enabled
name: postgresql
Expand All @@ -21,4 +21,4 @@ name: artifactory
sources:
- https://github.com/jfrog/charts
type: application
version: 107.98.7
version: 107.98.9
4 changes: 1 addition & 3 deletions stable/artifactory/files/binarystore.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,7 @@
<path>{{ .Values.artifactory.persistence.googleStorage.path }}</path>
<bucketExists>{{ .Values.artifactory.persistence.googleStorage.bucketExists }}</bucketExists>
{{- if .Values.artifactory.persistence.googleStorage.signedUrlExpirySeconds }}
<signedUrlExpirySeconds>true</signedUrlExpirySeconds>
{{- else }}
<signedUrlExpirySeconds>false</signedUrlExpirySeconds>
<signedUrlExpirySeconds>{{ .Values.artifactory.persistence.googleStorage.signedUrlExpirySeconds | int64 }}</signedUrlExpirySeconds>
{{- end }}
</provider>
</config>
Expand Down
2 changes: 1 addition & 1 deletion stable/artifactory/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ artifactory:
bucketExists: false
useInstanceCredentials: false
enableSignedUrlRedirect: false
# signedUrlExpirySeconds: false
# signedUrlExpirySeconds: 30
## For artifactory.persistence.type aws-s3-v3, s3-storage-v3-direct, cluster-s3-storage-v3, s3-storage-v3-archive
awsS3V3:
testConnection: false
Expand Down

0 comments on commit 9702937

Please sign in to comment.