Backstage
    Preparing search index...

    Fetches information from a kubernetes cluster using the cluster details object to target a specific cluster

    interface KubernetesFetcher {
        fetchObjectsForService(
            params: ObjectFetchParams,
        ): Promise<FetchResponseWrapper>;
        fetchPodMetricsByNamespaces(
            clusterDetails: ClusterDetails,
            credential: KubernetesCredential,
            namespaces: Set<string>,
            labelSelector?: string,
        ): Promise<FetchResponseWrapper>;
    }
    Index

    Methods