What is the new method to replace the deprecated method volcanoClient.queues().createOrReplace(queue)? #5652
-
What is the new method to replace the following deprecated methods: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
volcanoClient.queues().resource(queue).serverSideApply();
volcanoClient.queues().resource(queue).delete();
volcanoClient.podGroups().resource(podGroup).serverSideApply();
volcanoClient.podGroups().resource(podGroup).delete(); For more information regarding common operations, you can refer to CHEATSHEET. |
Beta Was this translation helpful? Give feedback.
volcanoClient.queues().resource(queue).serverSideApply();
volcanoClient.queues().resource(queue).delete();
volcanoClient.podGroups().resource(podGroup).serverSideApply();
volcanoClient.podGroups().resource(podGroup).delete();
For more information regarding common operations, you can refer to CHEATSHEET.