fix(argo-rollouts): Fix of global subscriptions for Argo Rollouts (#2797)
* Fix of Argo Rollouts notifications subscription Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> * Fixed Argo Rollouts helm changelog Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> * Fixed Argo Rollouts helm default values.yaml Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> * Fixed Argo Rollouts doc after helm update Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> --------- Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> Signed-off-by: Aikawa <yu.croco@gmail.com> Co-authored-by: Aikawa <yu.croco@gmail.com>
This commit is contained in:
parent
3d98d04f43
commit
425e98ecff
4 changed files with 10 additions and 10 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v1.7.1
|
appVersion: v1.7.1
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.37.0
|
version: 2.37.1
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -18,5 +18,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
- kind: fixed
|
||||||
description: Bump argo-rollouts to v1.7.1
|
description: Fix subscriptions into notifications-configmap
|
||||||
|
|
|
@ -61,7 +61,7 @@ For full list of changes please check ArtifactHub [changelog].
|
||||||
| notifications.secret.annotations | object | `{}` | Annotations to be added to the notifications secret |
|
| notifications.secret.annotations | object | `{}` | Annotations to be added to the notifications secret |
|
||||||
| notifications.secret.create | bool | `false` | Whether to create notifications secret |
|
| notifications.secret.create | bool | `false` | Whether to create notifications secret |
|
||||||
| notifications.secret.items | object | `{}` | Generic key:value pairs to be inserted into the notifications secret |
|
| notifications.secret.items | object | `{}` | Generic key:value pairs to be inserted into the notifications secret |
|
||||||
| notifications.subscriptions | object | `{}` | The subscriptions define the subscriptions to the triggers in a general way for all rollouts |
|
| notifications.subscriptions | list | `[]` | The subscriptions define the subscriptions to the triggers in a general way for all rollouts |
|
||||||
| notifications.templates | object | `{}` | Notification templates |
|
| notifications.templates | object | `{}` | Notification templates |
|
||||||
| notifications.triggers | object | `{}` | The trigger defines the condition when the notification should be sent |
|
| notifications.triggers | object | `{}` | The trigger defines the condition when the notification should be sent |
|
||||||
| providerRBAC.additionalRules | list | `[]` | Additional RBAC rules for others providers |
|
| providerRBAC.additionalRules | list | `[]` | Additional RBAC rules for others providers |
|
||||||
|
|
|
@ -17,6 +17,6 @@ data:
|
||||||
{{- toYaml . | nindent 2 }}
|
{{- toYaml . | nindent 2 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.notifications.subscriptions }}
|
{{- with .Values.notifications.subscriptions }}
|
||||||
subscriptions:
|
subscriptions: |
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -482,9 +482,9 @@ notifications:
|
||||||
# when: rollout.spec.template.spec.containers[0].image == 'argoproj/rollouts-demo:purple'
|
# when: rollout.spec.template.spec.containers[0].image == 'argoproj/rollouts-demo:purple'
|
||||||
|
|
||||||
# -- The subscriptions define the subscriptions to the triggers in a general way for all rollouts
|
# -- The subscriptions define the subscriptions to the triggers in a general way for all rollouts
|
||||||
subscriptions: {}
|
subscriptions: []
|
||||||
# subscriptions:
|
# - recipients:
|
||||||
# recipients:
|
# - slack:<channel>
|
||||||
# - slack:<channel>
|
|
||||||
# triggers:
|
# triggers:
|
||||||
# - on-rollout-completed
|
# - on-rollout-completed
|
||||||
|
# - on-rollout-aborted
|
||||||
|
|
Loading…
Reference in a new issue