Argo-rollouts not changing the image name for deployment referenced in workloadRef section #2161
preethignanesh
started this conversation in
General
Replies: 1 comment
-
Related #1537 |
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
-
I am trying the Argo rollouts for blue/green strategy. We have defined the deployments within our component spec, so while creating the rollout yaml instead of defining the pod config, I am using
workloadRef:
apiVersion: apps/v1
kind: Deployment
name: rollout-ref-deployment
to point to the existing deployment.
With this approach, rollout is creating new set of replicas specified in the rollout yaml instead of monitoring the existing deployed pods. Can't the rollout monitor the existing deployments instead of creating different replica set which in turn spins up new pods ?
Also when I try to rollout using the command - kubectl argo rollouts set image, its not changing the image tag of the existing deployment and the rollout is not progressing.
Is it possible to get the rollout command work when we have the rollout yaml pointing to the existing deployment ?
Beta Was this translation helpful? Give feedback.
All reactions