Class: Pod

    lib/k8s/pod .Pod

    Hierarchy

    • any

      Pod

    Constructors

    constructor

    new Pod(jsonData)

    Parameters

    Name Type
    jsonData KubePod

    Overrides

    makeKubeObject<KubePod&gt;('Pod').constructor

    Defined in

    lib/k8s/pod.ts:93

    Properties

    apiEndpoint

    Static apiEndpoint: Object

    Index signature

    ▪ [other: string]: any

    Type declaration

    Name Type
    scale? { get: (namespace: string, name: string, clusterName?: string) => Promise<any> ; put: (body: { metadata: KubeMetadata ; spec: { replicas: number } }, clusterName?: string) => Promise<any> }
    scale.get (namespace: string, name: string, clusterName?: string) => Promise<any>
    scale.put (body: { metadata: KubeMetadata ; spec: { replicas: number } }, clusterName?: string) => Promise<any>

    Defined in

    lib/k8s/pod.ts:90


    className

    Static className: string

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).className

    Defined in

    lib/k8s/cluster.ts:318

    Accessors

    spec

    get spec(): KubePodSpec

    Returns

    KubePodSpec

    Defined in

    lib/k8s/pod.ts:98


    status

    get status(): Object

    Returns

    Object

    Name Type
    conditions KubeCondition []
    containerStatuses KubeContainerStatus []
    ephemeralContainerStatuses? KubeContainerStatus []
    hostIP string
    initContainerStatuses? KubeContainerStatus []
    message? string
    phase string
    qosClass? string
    reason? string
    startTime Time

    Defined in

    lib/k8s/pod.ts:102

    Methods

    attach

    attach(container, onAttach, options?): Object

    Parameters

    Name Type
    container string
    onAttach StreamResultsCb
    options StreamArgs

    Returns

    Object

    Name Type
    cancel () => void
    getSocket () => null | WebSocket

    Defined in

    lib/k8s/pod.ts:172


    exec

    exec(container, onExec, options?): Object

    Parameters

    Name Type
    container string
    onExec StreamResultsCb
    options ExecOptions

    Returns

    Object

    Name Type
    cancel () => void
    getSocket () => null | WebSocket

    Defined in

    lib/k8s/pod.ts:184


    getDetailedStatus

    getDetailedStatus(): PodDetailedStatus

    Returns

    PodDetailedStatus

    Defined in

    lib/k8s/pod.ts:222


    getLogs

    getLogs(…args): () => void

    Parameters

    Name Type
    ...args [container: string, tailLines: number, showPrevious: boolean, onLogs: StreamResultsCb] | [container: string, onLogs: StreamResultsCb, logsOptions: LogOptions]

    Returns

    fn

    ▸ (): void

    Returns

    void

    Defined in

    lib/k8s/pod.ts:106


    apiList

    Static apiList(onList, onError?, opts?): any

    Parameters

    Name Type
    onList (arg: any[]) => void
    onError? (err: ApiError ) => void
    opts? ApiListSingleNamespaceOptions

    Returns

    any

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).apiList

    Defined in

    lib/k8s/cluster.ts:293


    getAuthorization

    Static Optional getAuthorization(arg, resourceAttrs?): any

    Parameters

    Name Type
    arg string
    resourceAttrs? AuthRequestResourceAttrs

    Returns

    any

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).getAuthorization

    Defined in

    lib/k8s/cluster.ts:320


    getErrorMessage

    Static getErrorMessage(err?): null | string

    Parameters

    Name Type
    err? null | ApiError

    Returns

    null | string

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).getErrorMessage

    Defined in

    lib/k8s/cluster.ts:316


    useApiGet

    Static useApiGet(onGet, name, namespace?, onError?): void

    Parameters

    Name Type
    onGet (…args: any) => void
    name string
    namespace? string
    onError? (err: ApiError ) => void

    Returns

    void

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).useApiGet

    Defined in

    lib/k8s/cluster.ts:303


    useApiList

    Static useApiList(onList, onError?, opts?): any

    Parameters

    Name Type
    onList (arg: any[]) => void
    onError? (err: ApiError ) => void
    opts? ApiListOptions

    Returns

    any

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).useApiList

    Defined in

    lib/k8s/cluster.ts:298


    useGet

    Static useGet(name, namespace?): [any, null | ApiError , (item: any) => void, (err: null | ApiError ) => void]

    Parameters

    Name Type
    name string
    namespace? string

    Returns

    [any, null | ApiError , (item: any) => void, (err: null | ApiError ) => void]

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).useGet

    Defined in

    lib/k8s/cluster.ts:312


    useList

    Static useList(opts?): [any[], null | ApiError , (items: any[]) => void, (err: null | ApiError ) => void]

    Parameters

    Name Type
    opts? ApiListOptions

    Returns

    [any[], null | ApiError , (items: any[]) => void, (err: null | ApiError ) => void]

    Inherited from

    makeKubeObject<KubePod>(‘Pod’).useList

    Defined in

    lib/k8s/cluster.ts:309