We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The way to resume rollouts described here seems not to work.
looks like
argo-rollouts/rollout/controller.go
Line 285 in 30951ae
spec.paused: false
len(rollout.Status.PauseConditions) > 0
The alternative solution i found is
kubectl patch rollouts.argoproj.io example-rollout --type merge -p '{"status": {"pauseConditions": []}}'
or install the kubectl plugin and execute
kubectl argo rollouts promote example-rollout
By looking into the implementation of promote command, they are internally different.
promote
Which one should I use? According to the answer here, the getteing started documentation should be fixed.
The text was updated successfully, but these errors were encountered:
dthomson25
Successfully merging a pull request may close this issue.
The way to resume rollouts described here seems not to work.
looks like
argo-rollouts/rollout/controller.go
Line 285 in 30951ae
this condition prevents unpauses even if we set
spec.paused: false
since we always havelen(rollout.Status.PauseConditions) > 0
The alternative solution i found is
or install the kubectl plugin and execute
By looking into the implementation of
promote
command, they are internally different.Which one should I use?
According to the answer here, the getteing started documentation should be fixed.
The text was updated successfully, but these errors were encountered: