You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
I have multiple apps (helm) deployed via app of apps pattern, all residing in folders in same git repository: app1, app2, app3... appN.
I have configured trigger for on-deployed event (from example in helm chart):
trigger.on-deployed: |
- description: Application is synced and healthy. Triggered once per commit.
oncePer: app.status.sync.revision
send:
- app-deployed
when: app.status.operationState.phase in ['Succeeded'] and app.status.health.status == 'Healthy'
Now if I change file(s) in app1 folder, trigger is firing on all other apps as well: app2, app3 ... appN, spamming slack with unneeded messages about apps that are not affected by change and are not actually deployed.
I want to be notified only about apps that are actually updated/deployed. Is there any workaround to achieve this?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have multiple apps (helm) deployed via app of apps pattern, all residing in folders in same git repository:
app1, app2, app3... appN
.I have configured trigger for on-deployed event (from example in helm chart):
and default subsciption:
Now if I change file(s) in
app1
folder, trigger is firing on all other apps as well:app2, app3 ... appN
, spamming slack with unneeded messages about apps that are not affected by change and are not actually deployed.I want to be notified only about apps that are actually updated/deployed. Is there any workaround to achieve this?
Beta Was this translation helpful? Give feedback.
All reactions