Skip to content

Commit

Permalink
Create kubernetes/openshift package
Browse files Browse the repository at this point in the history
- Only containing route now, but is meant for all OpenShift specific CRs/Objects
  • Loading branch information
pehala committed Jul 11, 2024
1 parent e98eda7 commit f107076
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion testsuite/gateway/exposers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from testsuite.certificates import Certificate
from testsuite.gateway import Exposer, Gateway, Hostname
from testsuite.httpx import KuadrantClient, ForceSNIClient
from testsuite.kubernetes.route import OpenshiftRoute
from testsuite.kubernetes.openshift.route import OpenshiftRoute


class OpenShiftExposer(Exposer):
Expand Down
2 changes: 1 addition & 1 deletion testsuite/kubernetes/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import openshift_client as oc
from openshift_client import Context, OpenShiftPythonException

from .route import OpenshiftRoute
from testsuite.kubernetes.openshift.route import OpenshiftRoute
from .secret import Secret


Expand Down
Empty file.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Module containing Route related stuff"""
"""Module containing OpenShift Route"""

from functools import cached_property

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from testsuite.policy.authorization import Value, JsonResponse
from testsuite.httpx import KuadrantClient
from testsuite.policy.authorization.auth_config import AuthConfig
from testsuite.kubernetes.route import OpenshiftRoute
from testsuite.kubernetes.openshift.route import OpenshiftRoute


@pytest.fixture(scope="module")
Expand Down

0 comments on commit f107076

Please sign in to comment.