Promote Rollout without Kubectl Plugin #1023
Unanswered
seanwalker909
asked this question in
Q&A
Replies: 1 comment
-
You can do this with a patch command it's something like: (Assuming you have 10 steps) [
{
"op": "replace",
"path": "/status/currentStepIndex",
"value": 9
},
{
"op": "replace",
"path": "/status/pauseConditions",
"value": {}
}
] The abort patch should be something like: [
{
"op": "replace",
"path": "/status/abort",
"value": true
}
] NOTE: that on the latest version you will need to patch against the |
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
-
Hi is there anyway to 'promote' a rollout without the kubectl plugin? For example using kubectl apply or patch? Also is there a way cancel rollouts without the plugin?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions