英文:
Is there an analog of --server-dry-run option in io.fabric8.kubernetes api (Java client for kubernetes)?
问题
在命令行中,我们可以使用kubectl apply --server-dry-run -f example-pod.yml
来对yml
文件进行试运行,而不会将其持久化。那么我们能否从Java中使用io.fabric8.kubernetes
(用于Kubernetes的Java客户端)来实现类似的操作呢?
英文:
In command line we can use kubectl apply --server-dry-run -f example-pod.yml
to make a trial run of yml
file without persisting it.
Can we do smth similar from Java, using io.fabric8.kubernetes
(Java client for kubernetes) ?
答案1
得分: 1
DryRun已在版本5.2.0
中实现,根据此问题 https://github.com/fabric8io/kubernetes-client/issues/2588。
可以在许多资源上像这样使用:
petClient.inNamespace(currentNamespace).withName("dry-run-delete").dryRun().delete();
英文:
DryRun has been implemented with version 5.2.0
according to this issue https://github.com/fabric8io/kubernetes-client/issues/2588.
It can be used like this on many resources:
petClient.inNamespace(currentNamespace).withName("dry-run-delete").dryRun().delete();
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论