renamed cf-notifications
to cfNotifications
added default value, updated readme
This commit is contained in:
parent
d303a4e13e
commit
15d5190673
3 changed files with 9 additions and 5 deletions
|
@ -611,6 +611,7 @@ NAME: my-release
|
|||
| apiVersionOverrides | object | `{}` | |
|
||||
| applicationVersioning.enabled | bool | `true` | enables the Codefresh application versioning feature |
|
||||
| applicationVersioning.useApplicationConfiguration | bool | `true` | use ApplicationConfiguration CRD to manage application versioning |
|
||||
| cfNotifications | object | `{}` | |
|
||||
| crds.additionalLabels | object | `{}` | Addtional labels to be added to all CRDs |
|
||||
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
||||
| crds.install | bool | `true` | Install and upgrade CRDs |
|
||||
|
|
|
@ -12,7 +12,7 @@ data:
|
|||
{{- with .Values.notifications.context }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.cf-notifications.context }}
|
||||
{{- with .Values.cfNotifications.context }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.notifications.notifiers }}
|
||||
|
@ -22,7 +22,7 @@ data:
|
|||
{{- with .Values.notifications.subscriptions }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.cf-notifications.subscriptions }}
|
||||
{{- with .Values.cfNotifications.subscriptions }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.notifications.templates }}
|
||||
|
@ -32,13 +32,13 @@ data:
|
|||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
||||
|
||||
{{- with .Values.cf-notifications.notifiers }}
|
||||
{{- with .Values.cfNotifications.notifiers }}
|
||||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
||||
{{- with .Values.cf-notifications.templates }}
|
||||
{{- with .Values.cfNotifications.templates }}
|
||||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
||||
{{- with .Values.cf-notifications.triggers }}
|
||||
{{- with .Values.cfNotifications.triggers }}
|
||||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
|
@ -3543,6 +3543,9 @@ notifications:
|
|||
# defaultTriggers: |
|
||||
# - on-sync-status-unknown
|
||||
|
||||
## Used by gitops-runtime-helm chart
|
||||
cfNotifications: {}
|
||||
|
||||
eventReporter:
|
||||
# Enabled we need to skip argo-cd chart tests for this component
|
||||
enabled: true
|
||||
|
|
Loading…
Reference in a new issue