Argo CD API Client
    Preparing search index...

    Interface ArgoCdPod

    A live pod managed by an application.

    interface ArgoCdPod {
        containers: ArgoCdContainer[];
        initContainers?: ArgoCdContainer[];
        name?: string;
        namespace?: string;
        nodeName?: string;
        phase?: string;
    }
    Index

    Properties

    containers: ArgoCdContainer[]

    Regular containers in the pod.

    initContainers?: ArgoCdContainer[]

    Init containers in the pod.

    name?: string

    Pod name.

    namespace?: string

    Pod namespace.

    nodeName?: string

    Name of the node the pod is scheduled on.

    phase?: string

    Pod phase (Running, Pending, Failed, Succeeded, Unknown).