diff --git a/stable/artifactory/CHANGELOG.md b/stable/artifactory/CHANGELOG.md index 9ed861062..ddabfe8d5 100644 --- a/stable/artifactory/CHANGELOG.md +++ b/stable/artifactory/CHANGELOG.md @@ -1,6 +1,9 @@ # JFrog Artifactory Chart Changelog All changes to this chart will be documented in this file. +## [107.98.14] - Jan 9, 2025 +* Add support for `customvolumemounts` for JFconnect, Obsvervability, Access, and Event containers + ## [107.98.13] - 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) diff --git a/stable/artifactory/Chart.yaml b/stable/artifactory/Chart.yaml index 6cfb23b4a..695f40e1d 100644 --- a/stable/artifactory/Chart.yaml +++ b/stable/artifactory/Chart.yaml @@ -21,4 +21,4 @@ name: artifactory sources: - https://github.com/jfrog/charts type: application -version: 107.98.13 +version: 107.98.14 diff --git a/stable/artifactory/templates/artifactory-statefulset.yaml b/stable/artifactory/templates/artifactory-statefulset.yaml index 4aca37bae..380a8fb8b 100644 --- a/stable/artifactory/templates/artifactory-statefulset.yaml +++ b/stable/artifactory/templates/artifactory-statefulset.yaml @@ -552,8 +552,8 @@ spec: volumeMounts: - name: artifactory-volume mountPath: {{ .Values.router.persistence.mountPath | quote }} - {{- if or .Values.router.customVolumeMounts .Values.global.customVolumeMounts }} -{{ tpl (include "router.customVolumeMounts" .) . | indent 8 }} + {{- if or .Values.artifactory.customVolumeMounts .Values.global.customVolumeMounts }} +{{ tpl (include "artifactory.customVolumeMounts" .) . | indent 8 }} {{- end }} resources: {{ toYaml .Values.router.resources | indent 10 }}