diff --git a/stable/artifactory-cpp-ce/CHANGELOG.md b/stable/artifactory-cpp-ce/CHANGELOG.md index 27989aea8..b14f80080 100644 --- a/stable/artifactory-cpp-ce/CHANGELOG.md +++ b/stable/artifactory-cpp-ce/CHANGELOG.md @@ -1,7 +1,7 @@ # JFrog Artifactory CE for C++ Chart Changelog All changes to this chart will be documented in this file -## [107.68.7] - Jul 20, 2023 +## [107.68.11] - Jul 20, 2023 * Disabled federation services when splitServicesToContainers=true ## [107.45.0] - Aug 25, 2022 diff --git a/stable/artifactory-cpp-ce/Chart.yaml b/stable/artifactory-cpp-ce/Chart.yaml index be2047ec1..f3bf78a48 100644 --- a/stable/artifactory-cpp-ce/Chart.yaml +++ b/stable/artifactory-cpp-ce/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: 7.68.7 +appVersion: 7.68.11 dependencies: - name: artifactory repository: file://charts/artifactory - version: 107.68.7 + version: 107.68.11 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 @@ -21,4 +21,4 @@ name: artifactory-cpp-ce sources: - https://github.com/jfrog/charts type: application -version: 107.68.7 +version: 107.68.11 diff --git a/stable/artifactory-ha/CHANGELOG.md b/stable/artifactory-ha/CHANGELOG.md index e246a354c..7123f652a 100644 --- a/stable/artifactory-ha/CHANGELOG.md +++ b/stable/artifactory-ha/CHANGELOG.md @@ -1,8 +1,18 @@ # JFrog Artifactory-ha Chart Changelog All changes to this chart will be documented in this file +## [107.68.11] - Sep 20, 2023 +* Fixed rtfs context +* Fixed - Metadata service does not respect customVolumeMounts for DB CAs [GH-1815](https://github.com/jfrog/charts/issues/1815) + +## [107.68.8] - Sep 18, 2023 +* Reverted - Enabled `unifiedSecretInstallation` by default [GH-1819](https://github.com/jfrog/charts/issues/1819) +* Removed unused `artifactory.javaOpts` from values.yaml +* Removed openshift condition check from NOTES.txt +* Fixed an issue with artifactory node replicaCount [GH-1808](https://github.com/jfrog/charts/issues/1808) + ## [107.68.7] - Aug 28, 2023 -* Enabled `unifiedSecretInstallation` as true by default +* Enabled `unifiedSecretInstallation` by default * Removed unused `artifactory.javaOpts` from values.yaml ## [107.67.0] - Aug 28, 2023 diff --git a/stable/artifactory-ha/Chart.yaml b/stable/artifactory-ha/Chart.yaml index c57b3ddda..d41409541 100644 --- a/stable/artifactory-ha/Chart.yaml +++ b/stable/artifactory-ha/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: 7.68.7 +appVersion: 7.68.11 dependencies: - condition: postgresql.enabled name: postgresql @@ -21,4 +21,4 @@ name: artifactory-ha sources: - https://github.com/jfrog/charts type: application -version: 107.68.7 +version: 107.68.11 diff --git a/stable/artifactory-ha/ci/small-values.yaml b/stable/artifactory-ha/ci/small-values.yaml index 72cd9a59a..501d357b9 100644 --- a/stable/artifactory-ha/ci/small-values.yaml +++ b/stable/artifactory-ha/ci/small-values.yaml @@ -16,7 +16,7 @@ artifactory: connector: maxThreads: 200 primary: - replicaCount: 2 + replicaCount: 1 resources: requests: memory: "4Gi" @@ -27,6 +27,8 @@ artifactory: javaOpts: xms: "4g" xmx: "6g" + node: + replicaCount: 2 access: database: maxOpenConnections: 80 diff --git a/stable/artifactory-ha/ci/test-values.yaml b/stable/artifactory-ha/ci/test-values.yaml index 7af7c2e0f..ec76512e7 100644 --- a/stable/artifactory-ha/ci/test-values.yaml +++ b/stable/artifactory-ha/ci/test-values.yaml @@ -4,7 +4,7 @@ artifactory: enabled: true fsGroupChangePolicy: "OnRootMismatch" masterKey: FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF - unifiedSecretInstallation: true + unifiedSecretInstallation: false persistence: enabled: false replicator: diff --git a/stable/artifactory-ha/templates/NOTES.txt b/stable/artifactory-ha/templates/NOTES.txt index d78841a21..277364908 100644 --- a/stable/artifactory-ha/templates/NOTES.txt +++ b/stable/artifactory-ha/templates/NOTES.txt @@ -56,13 +56,8 @@ echo ${DB_PASSWORD} SETUP: 1. Get the Artifactory IP and URL -{{printf "\n" }} - {{- if .Capabilities.APIVersions.Has "security.openshift.io/v1/SecurityContextConstraints" -}} - - NOTE: You are installing Artifactory in Openshift Environment. - Nginx service is not available with this installation. If required, you can set the value for ingress in values.yaml. - {{- else if contains "NodePort" .Values.nginx.service.type }} + {{- if contains "NodePort" .Values.nginx.service.type }} export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "artifactory-ha.nginx.fullname" . }}) export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") echo http://$NODE_IP:$NODE_PORT/ diff --git a/stable/artifactory-ha/templates/artifactory-node-statefulset.yaml b/stable/artifactory-ha/templates/artifactory-node-statefulset.yaml index 490fcbd7c..ed5cb959c 100644 --- a/stable/artifactory-ha/templates/artifactory-node-statefulset.yaml +++ b/stable/artifactory-ha/templates/artifactory-node-statefulset.yaml @@ -99,7 +99,7 @@ spec: image: "{{ .Values.initContainerImage }}" imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - 'bash' @@ -133,7 +133,7 @@ spec: image: "{{ .Values.initContainerImage }}" imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - 'bash' @@ -156,7 +156,7 @@ spec: - name: 'copy-system-configurations' image: '{{ .Values.initContainerImage }}' {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -227,7 +227,7 @@ spec: - name: copy-custom-certificates image: "{{ .Values.initContainerImage }}" {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} resources: {{ toYaml .Values.initContainers.resources | indent 10 }} @@ -247,7 +247,7 @@ spec: - name: copy-circle-of-trust-certificates image: "{{ .Values.initContainerImage }}" {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} resources: {{ toYaml .Values.initContainers.resources | indent 10 }} @@ -289,7 +289,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -429,7 +429,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "router") }} imagePullPolicy: {{ .Values.router.image.imagePullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -474,7 +474,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -514,7 +514,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -585,6 +585,9 @@ spec: {{ tpl (toYaml .) $ | indent 8 }} {{- end }} volumeMounts: + {{- if or .Values.artifactory.customVolumeMounts .Values.global.customVolumeMounts }} +{{ tpl (include "artifactory-ha.customVolumeMounts" .) . | indent 8 }} + {{- end }} - name: volume mountPath: {{ .Values.artifactory.persistence.mountPath | quote }} resources: @@ -603,7 +606,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -641,7 +644,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -671,7 +674,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -709,7 +712,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -747,7 +750,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -807,7 +810,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -845,7 +848,7 @@ spec: image: {{ include "artifactory-ha.getImageInfoByValue" (list . "artifactory") }} imagePullPolicy: {{ .Values.artifactory.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - '/bin/bash' @@ -1078,7 +1081,7 @@ spec: - name: {{ . | replace "_" "-" | replace "." "-" }} image: {{ include "artifactory-ha.getImageInfoByValue" (list $ "logger") }} {{- if $.Values.containerSecurityContext.enabled }} - securityContext: {{- omit $.Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit $.Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - 'sh' @@ -1098,7 +1101,7 @@ spec: - name: {{ . | replace "_" "-" | replace "." "-" }} image: {{ include "artifactory-ha.getImageInfoByValue" (list $ "logger") }} {{- if $.Values.containerSecurityContext.enabled }} - securityContext: {{- omit $.Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit $.Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} command: - 'sh' @@ -1119,7 +1122,7 @@ spec: image: "{{ .Values.filebeat.image.repository }}:{{ .Values.filebeat.image.version }}" imagePullPolicy: {{ .Values.filebeat.image.pullPolicy }} {{- if .Values.containerSecurityContext.enabled }} - securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | indent 10 }} + securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 10 }} {{- end }} args: - "-e" diff --git a/stable/artifactory-ha/templates/artifactory-primary-statefulset.yaml b/stable/artifactory-ha/templates/artifactory-primary-statefulset.yaml index 998817eb4..73ce3abf3 100644 --- a/stable/artifactory-ha/templates/artifactory-primary-statefulset.yaml +++ b/stable/artifactory-ha/templates/artifactory-primary-statefulset.yaml @@ -675,6 +675,9 @@ spec: {{ tpl (toYaml .) $ | indent 8 }} {{- end }} volumeMounts: + {{- if or .Values.artifactory.customVolumeMounts .Values.global.customVolumeMounts }} +{{ tpl (include "artifactory-ha.customVolumeMounts" .) . | indent 8 }} + {{- end }} - name: volume mountPath: {{ .Values.artifactory.persistence.mountPath | quote }} resources: diff --git a/stable/artifactory-ha/values.yaml b/stable/artifactory-ha/values.yaml index 2883fbd51..52c6a8439 100644 --- a/stable/artifactory-ha/values.yaml +++ b/stable/artifactory-ha/values.yaml @@ -97,7 +97,7 @@ ingress: hosts: [] routerPath: / artifactoryPath: /artifactory/ - rtfsPath: /rtfs/ + rtfsPath: /artifactory/service/rtfs/ className: "" annotations: {} # kubernetes.io/ingress.class: nginx @@ -324,7 +324,7 @@ artifactory: ## root certificates added will be copied to $JFROG_HOME/artifactory/var/etc/access/keys/trusted folder. circleOfTrustCertificatesSecret: # unifiedSecretInstallation flag enables single unified secret holding all the artifactory-ha secrets - unifiedSecretInstallation: true + unifiedSecretInstallation: false image: registry: releases-docker.jfrog.io repository: jfrog/artifactory-pro @@ -1523,7 +1523,7 @@ federation: command: - sh - -c - - curl -XPOST --fail --max-time {{ .Values.probes.timeoutSeconds }} http://localhost:{{ .Values.federation.internalPort }}/rtfs/sync/ping + - curl -XPOST --fail --max-time {{ .Values.probes.timeoutSeconds }} http://localhost:{{ .Values.federation.internalPort }}/artifactory/service/rtfs/ping initialDelaySeconds: {{ if semverCompare " 1. This is only supported in Artifactory 7.25.x (appVersions) and above. replicaCount: 1 # minAvailable: 1 @@ -1385,7 +1385,7 @@ federation: command: - sh - -c - - curl --fail --max-time {{ .Values.probes.timeoutSeconds }} http://localhost:{{ .Values.federation.internalPort }}/rtfs/sync/ping + - curl --fail --max-time {{ .Values.probes.timeoutSeconds }} http://localhost:{{ .Values.federation.internalPort }}/artifactory/service/rtfs/ping initialDelaySeconds: {{ if semverCompare "1 (recommended 3) replicaCount: 1 migration: @@ -253,7 +253,7 @@ xray: enabled: true unifiedUpgradeAllowed: true xray: - unifiedSecretInstallation: true + unifiedSecretInstallation: false postgresql: enabled: false database: @@ -280,7 +280,7 @@ distribution: enabled: true unifiedUpgradeAllowed: true distribution: - unifiedSecretInstallation: true + unifiedSecretInstallation: false postgresql: enabled: false database: @@ -288,12 +288,11 @@ distribution: user: distribution password: distribution - insight: enabled: true unifiedUpgradeAllowed: true insightServer: - unifiedSecretInstallation: true + unifiedSecretInstallation: false postgresql: enabled: false database: @@ -319,7 +318,7 @@ pipelines: user: "apiuser" password: "pipeline" pipelines: - unifiedSecretInstallation: true + unifiedSecretInstallation: false msg: uiUserPassword: password redis: @@ -339,6 +338,3 @@ pipelines: build_vhost_name: pipelines root_vhost_name: pipelinesRoot protocol: amqp - -pdnServer: - enabled: false diff --git a/stable/xray/CHANGELOG.md b/stable/xray/CHANGELOG.md index c4d5d0fd5..51c0de336 100644 --- a/stable/xray/CHANGELOG.md +++ b/stable/xray/CHANGELOG.md @@ -1,7 +1,7 @@ # JFrog Xray Chart Changelog All changes to this chart will be documented in this file. -## [103.82.6] - Jul 16, 2023 +## [103.82.11] - Jul 16, 2023 * Added `podSecurityContext.enabled` and `containerSecurityContext.enabled` to support openshift ## [103.79.0] - Jul 3, 2023 diff --git a/stable/xray/Chart.yaml b/stable/xray/Chart.yaml index 0a4de9960..278b42de8 100644 --- a/stable/xray/Chart.yaml +++ b/stable/xray/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -appVersion: 3.82.6 +appVersion: 3.82.11 dependencies: - condition: postgresql.enabled name: postgresql @@ -24,4 +24,4 @@ name: xray sources: - https://github.com/jfrog/charts type: application -version: 103.82.6 +version: 103.82.11 diff --git a/stable/xray/values.yaml b/stable/xray/values.yaml index ad89a65b8..cad25114c 100644 --- a/stable/xray/values.yaml +++ b/stable/xray/values.yaml @@ -1111,7 +1111,7 @@ router: image: registry: releases-docker.jfrog.io repository: jfrog/router - tag: 7.78.0 + tag: 7.79.0 imagePullPolicy: IfNotPresent serviceRegistry: ## Service registry (Access) TLS verification skipped if enabled.