This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Replies: 1 comment
-
I noticed the same behavior with v2.3.3. This feels like a bug because "on deployed" should indicate that things are up and healthy. With this being triggered on "Progressing", this can result in all sorts of cases where things aren't deployed successfully. For example your image tag could point to an image that doesn't exist but this trigger will happen which makes you think it worked when really your pods will end up with a bunch of image pull errors which means your deploy wasn't successful (it sync'd but it's not running the new version that was deployed). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
On-deployed will be triggered when app.status.health.status is 'Progressing'
Here below is our on-deployed trigger:
And our application's configuration looks like this:
In my case,after the app's sync succeeded,on the argocd web console the app.status.operationState.phase was 'Succeeded',and app.status.health.status was 'Progressing',but the on-deployed still has been triggered.
It seems that the trigger's configuration did not work as our expected.
My environment:
EKS:1.21
Argocd:quay.io/argoproj/argocd:v2.1.5
Argocd notification:argocd-notifications:v1.1.0
I don't know whether I made wrong configuration somewhere
Beta Was this translation helpful? Give feedback.
All reactions