diff --git a/testsuite/openshift/client.py b/testsuite/openshift/client.py index 6676636c..f4cb5159 100644 --- a/testsuite/openshift/client.py +++ b/testsuite/openshift/client.py @@ -1,6 +1,5 @@ """This module implements an openshift interface with openshift oc client wrapper.""" -import enum import os from functools import cached_property from typing import Dict @@ -13,15 +12,6 @@ from .secret import Secret -class ServiceTypes(enum.Enum): - """Service types enum.""" - - CLUSTER_IP = "clusterip" - EXTERNAL_NAME = "externalname" - LOAD_BALANCER = "loadbalancer" - NODE_PORT = "nodeport" - - class OpenShiftClient: """OpenShiftClient is an interface to the official OpenShift python client."""