0
守望者:使用fabric8io kubernetes-client;是否可以刪除[自定義]觀察者?
private final class CustomKubeWatcher implements Watcher<Pod> { ... }
添加使用:
kubeClient.pods().inNamespace(kubeNamespace).watch(customKubeWatcher);
如何停止的守望者?當我的客戶端實例是GC'd時它會被清理嗎?
https://github.com/fabric8io/kubernetes-client
謝謝。在閱讀了API文檔之後,我發現了相同的內容。很奇怪,沒有一個例子演示這種用法。 – mehmetg