Bartosz Bierkowski - Low dose cloud

Tag: openshift

Changes in oc client from OpenShift v3.10 to v3.11

Changes in oc client from OpenShift v3.10 to v3.11

Featured, OpenShift
With each new version of command line tool, especially one so dynamically evolving like OpenShift client, I am always curious what are new features added. The new API objects are mapped into new commands, but usually there are more changes under the hood.So, I ran a little diff between top level commands of oc 3.10 and oc 3.11. There are many changes in the descriptions of commands and their parameters. There are many repetitions for --output, --timeout, but I am not going to cover that. There seem to be a new command called wait.A similar parameter --wait has been added to several other commands: oc deleteoc applyoc replaceoc run It allows waiting on a resources to be deleted. So, it is no longer asynchronous "fire & forget" operation, but a blocking one. It could be a go...