export interface PodCondition {
    /**
     * The type of the condition
     */
    readonly type: string;
    /**
     * The status of the condition
     */
    readonly status: string;
}
