我正在使用用于 java 的 fabric8 库在 Kubernetes 集群上部署应用程序。
我想轮询 pod 的状态以了解它们何时准备就绪。我开始自己写,直到我读到了 Watcher。
我实现了这样的东西
deployment =
kubeClient.extensions().deployments().inNamespace(namespaceName).create(deployment);
kubeClient.pods().inNamespace(namespaceName).watch(new Watcher<Pod>() {
@Override
public void eventReceived(io.fabric8.kubernetes.client.Watcher.Action action,
Pod resource) {
logger.info("Pod event {} {}", action, resource);
logger.info("Pod status {} , Reason {} ", resource.getStatus().getPhase(),
resource.getStatus().getReason());
}
@Override
// What causes the watcher to close?
public void onClose(KubernetesClientException cause) {
if (cause != null) {
// throw?
logger.error("Pod event {} ", cause);
}
}
});
我不确定我是否正确理解了 Watcher 的功能。是否超时?还是我仍然在 eventReceivedMethod() 中编写轮询器?观察者的用例是什么?