Backstage
    Preparing search index...
    interface KubernetesProxyApi {
        deletePod(
            request: { clusterName: string; namespace: string; podName: string },
        ): Promise<{ text: string }>;
        getEventsByInvolvedObjectName(
            request: {
                clusterName: string;
                involvedObjectName: string;
                namespace: string;
            },
        ): Promise<Event[]>;
        getPodLogs(
            request: {
                clusterName: string;
                containerName: string;
                namespace: string;
                podName: string;
                previous?: boolean;
            },
        ): Promise<{ text: string }>;
    }
    Index

    Methods

    • Parameters

      • request: { clusterName: string; namespace: string; podName: string }

      Returns Promise<{ text: string }>

    • Parameters

      • request: { clusterName: string; involvedObjectName: string; namespace: string }

      Returns Promise<Event[]>

    • Parameters

      • request: {
            clusterName: string;
            containerName: string;
            namespace: string;
            podName: string;
            previous?: boolean;
        }

      Returns Promise<{ text: string }>