Argo CD API Client
    Preparing search index...

    Interface ArgoCdContainer

    A single container within a pod.

    interface ArgoCdContainer {
        image: string;
        name: string;
        podName?: string;
        ready?: boolean;
        restartCount?: number;
        state?: Record<string, unknown>;
    }
    Index

    Properties

    image: string

    Container image reference.

    name: string

    Container name.

    podName?: string

    Name of the pod this container belongs to — set by containers().

    ready?: boolean

    Whether the container passed its readiness probe.

    restartCount?: number

    Number of times the container has restarted.

    state?: Record<string, unknown>

    Current container state (running, waiting, terminated).