diff --git a/stable/artifactory-ha/CHANGELOG.md b/stable/artifactory-ha/CHANGELOG.md index d90ed1827..57b2ea801 100644 --- a/stable/artifactory-ha/CHANGELOG.md +++ b/stable/artifactory-ha/CHANGELOG.md @@ -1,6 +1,9 @@ # JFrog Artifactory-ha Chart Changelog All changes to this chart will be documented in this file +## [107.59.12] - July 6, 2023 +* Add option to configure event.webhooks within generated system.yaml + ## [107.59.11] - May 31, 2023 * Fixed reference of `terminationGracePeriodSeconds` * **Breaking change** diff --git a/stable/artifactory-ha/values.yaml b/stable/artifactory-ha/values.yaml index b74ec1b1d..48db4c7d3 100644 --- a/stable/artifactory-ha/values.yaml +++ b/stable/artifactory-ha/values.yaml @@ -761,6 +761,10 @@ artifactory: jfconnect_service: enabled: false {{- end }} + {{- if .Values.event.webhooks }} + event: + webhooks: {{ toYaml .Values.event.webhooks | nindent 6 }} + {{- end }} ## IMPORTANT: If overriding artifactory.internalPort: ## DO NOT use port lower than 1024 as Artifactory runs as non-root and cannot bind to ports lower than 1024! externalPort: 8082 @@ -1330,6 +1334,8 @@ event: failureThreshold: 90 periodSeconds: 5 timeoutSeconds: {{ .Values.probes.timeoutSeconds }} + webhooks: {} + # urlStrictPolicy: false jfconnect: name: jfconnect enabled: true diff --git a/stable/artifactory/CHANGELOG.md b/stable/artifactory/CHANGELOG.md index 91e7df7d3..c8c491318 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.59.12] - July 6, 2023 +* Add option to configure event.webhooks within generated system.yaml + ## [107.59.11] - May 31, 2023 * Fixed reference of `terminationGracePeriodSeconds` * Added Support for Cold Artifact Storage as part of the systemYaml configuration (disabled by default) diff --git a/stable/artifactory/values.yaml b/stable/artifactory/values.yaml index 7f8863ef7..e5bb19d42 100644 --- a/stable/artifactory/values.yaml +++ b/stable/artifactory/values.yaml @@ -723,6 +723,10 @@ artifactory: jfconnect_service: enabled: false {{- end }} + {{- if .Values.event.webhooks }} + event: + webhooks: {{ toYaml .Values.event.webhooks | nindent 6 }} + {{- end }} annotations: {} service: name: artifactory @@ -1198,6 +1202,8 @@ event: failureThreshold: 90 periodSeconds: 5 timeoutSeconds: {{ .Values.probes.timeoutSeconds }} + webhooks: {} + # urlStrictPolicy: false jfconnect: name: jfconnect enabled: true