Skip to content

Commit

Permalink
Add option to configure event.webhooks within generated system.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaus Wening committed Jul 5, 2023
1 parent ae5a56b commit d6992d1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions stable/artifactory-ha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -1330,6 +1334,8 @@ event:
failureThreshold: 90
periodSeconds: 5
timeoutSeconds: {{ .Values.probes.timeoutSeconds }}
webhooks: {}
# urlStrictPolicy: false
jfconnect:
name: jfconnect
enabled: true
Expand Down
6 changes: 6 additions & 0 deletions stable/artifactory/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -1198,6 +1202,8 @@ event:
failureThreshold: 90
periodSeconds: 5
timeoutSeconds: {{ .Values.probes.timeoutSeconds }}
webhooks: {}
# urlStrictPolicy: false
jfconnect:
name: jfconnect
enabled: true
Expand Down

0 comments on commit d6992d1

Please sign in to comment.