package repository import ( "context" "github.com/ocdp/cluster-service/internal/domain/entity" ) type InstanceDiagnosticsClient interface { GetDiagnostics(ctx context.Context, cluster *entity.Cluster, instance *entity.Instance, tailLines int64) (*entity.InstanceDiagnostics, error) } // PodLogStreamer streams pod log lines over channels. The caller reads from the // lines channel until it is closed; errors are sent to the errs channel. type PodLogStreamer interface { StreamPodLogs(ctx context.Context, cluster *entity.Cluster, namespace, podName, containerName string, tailLines int64) (<-chan string, <-chan error, error) }