From 13844976677cc0ac29fee65b5f051480d4cb978b Mon Sep 17 00:00:00 2001 From: Meni Yakove Date: Wed, 13 Nov 2024 18:51:29 +0200 Subject: [PATCH] add condition type Successful --- ocp_resources/resource.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ocp_resources/resource.py b/ocp_resources/resource.py index d1ecb4729f..9618f03a23 100644 --- a/ocp_resources/resource.py +++ b/ocp_resources/resource.py @@ -257,6 +257,7 @@ class Reason: class Type: NETWORK_READY: str = "NetworkReady" + SUCCESSFUL: str = "Successful" class Type: CLUSTER_IP = "ClusterIP"