Interface KubernetesProbeIfc
- All Known Implementing Classes:
FileBasedKubernetesProbe
public interface KubernetesProbeIfc
Interface representing a Kubernetes Probe Provider.
This interface defines the contract for updating the status of a Kubernetes probe.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanupdateProbe(boolean status) Updates the status of a Kubernetes probe.
-
Method Details
-
updateProbe
boolean updateProbe(boolean status) Updates the status of a Kubernetes probe.- Parameters:
status- The new status to be set for the probe. Typically, this represents whether the probe is healthy or not.- Returns:
trueif the probe status was successfully updated,falseotherwise.
-