From ecd22b4c6d8794ea52c2a3235ebae1a704320c7b Mon Sep 17 00:00:00 2001 From: Shahaf Bahar <110476642+sbahar619@users.noreply.github.com> Date: Thu, 26 Dec 2024 23:22:23 +0200 Subject: [PATCH] Add AGENT_CONNECTED constant to ResourceConstants (#2255) Introduced a new constant AGENT_CONNECTED in the ResourceConstants class to Represent the status when an agent is successfully connected. Signed-off-by: Shahaf Bahar --- ocp_resources/utils/resource_constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ocp_resources/utils/resource_constants.py b/ocp_resources/utils/resource_constants.py index 503f6c6c85..8d0351a8e7 100644 --- a/ocp_resources/utils/resource_constants.py +++ b/ocp_resources/utils/resource_constants.py @@ -47,6 +47,7 @@ class Type: NETWORK_READY: str = "NetworkReady" SUCCESSFUL: str = "Successful" RUNNING: str = "Running" + AGENT_CONNECTED: str = "AgentConnected" class Type: CLUSTER_IP = "ClusterIP"