diff --git a/openshift/watch.py b/openshift/watch.py new file mode 100644 index 00000000..7aba4785 --- /dev/null +++ b/openshift/watch.py @@ -0,0 +1,11 @@ +from kubernetes.watch import Watch as K8sWatch + +from openshift import client + + +class Watch(K8sWatch): + + def __init__(self, return_type=None): + self._raw_return_type = return_type + self._stop = False + self._api_client = client.ApiClient()