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 Type
    Method
    Description
    boolean
    updateProbe(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:
      true if the probe status was successfully updated, false otherwise.