Skip to content

What is the new method to replace the deprecated method volcanoClient.queues().createOrReplace(queue)? #5652

Answered by rohanKanojia
hzp01 asked this question in Q&A
Discussion options

You must be logged in to vote

1、volcanoClient.queues().createOrReplace(queue)

volcanoClient.queues().resource(queue).serverSideApply();

2、volcanoClient.queues().delete(queue)

volcanoClient.queues().resource(queue).delete();

3、volcanoClient.podGroups().createOrReplace(podGroup)

volcanoClient.podGroups().resource(podGroup).serverSideApply();

4、volcanoClient.podGroups().delete(podGroup)

volcanoClient.podGroups().resource(podGroup).delete();

For more information regarding common operations, you can refer to CHEATSHEET.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by hzp01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants