Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wind57 committed Sep 20, 2023
1 parent 3e53dd4 commit 3ed982a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class DiscoveryClientFilterNamespaceIT {

private static RbacAuthorizationV1Api rbacApi;

private static V1ClusterRoleBinding clusterRole;
private static V1ClusterRoleBinding clusterRoleBinding;

@BeforeAll
static void beforeAll() throws Exception {
Expand All @@ -85,19 +85,20 @@ static void beforeAll() throws Exception {

util = new Util(K3S);
rbacApi = new RbacAuthorizationV1Api();
clusterRole = (V1ClusterRoleBinding) util
clusterRoleBinding = (V1ClusterRoleBinding) util
.yaml("namespace-filter/cluster-admin-serviceaccount-role.yaml");
util.createNamespace(NAMESPACE_LEFT);
util.createNamespace(NAMESPACE_RIGHT);
util.setUp(NAMESPACE);

rbacApi.createClusterRoleBinding(clusterRole, null, null, null, null);
rbacApi.createClusterRoleBinding(clusterRoleBinding, null, null, null, null);
discoveryServer(Phase.CREATE);
}

@AfterAll
static void afterAll() throws Exception {
rbacApi.deleteClusterRoleBinding(clusterRole.getMetadata().getName(), null, null, null, null, null, null);
rbacApi.deleteClusterRoleBinding(clusterRoleBinding.getMetadata().getName(), null, null, null, null, null,
null);
Commons.cleanUp(DISCOVERY_SERVER_APP_NAME, K3S);
Commons.cleanUp(SPRING_CLOUD_K8S_DISCOVERY_CLIENT_APP_NAME, K3S);
discoveryServer(Phase.DELETE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ class DiscoveryClientIT {

private static Util util;

private static RbacAuthorizationV1Api rbacApi;

private static V1ClusterRoleBinding clusterRoleBinding;

@BeforeAll
static void beforeAll() throws Exception {
K3S.start();
Expand All @@ -124,15 +128,15 @@ static void beforeAll() throws Exception {
Commons.loadSpringCloudKubernetesImage(SPRING_CLOUD_K8S_DISCOVERY_CLIENT_APP_NAME, K3S);

util = new Util(K3S);
rbacApi = new RbacAuthorizationV1Api();
util.setUp(NAMESPACE);

util.createNamespace(NAMESPACE_LEFT);
util.createNamespace(NAMESPACE_RIGHT);

RbacAuthorizationV1Api rbacApi = new RbacAuthorizationV1Api();
V1ClusterRoleBinding clusterRole = (V1ClusterRoleBinding) util
clusterRoleBinding = (V1ClusterRoleBinding) util
.yaml("namespace-filter/cluster-admin-serviceaccount-role.yaml");
rbacApi.createClusterRoleBinding(clusterRole, null, null, null, null);
rbacApi.createClusterRoleBinding(clusterRoleBinding, null, null, null, null);

util.wiremock(NAMESPACE_LEFT, "/wiremock-" + NAMESPACE_LEFT, Phase.CREATE, false);
util.wiremock(NAMESPACE_RIGHT, "/wiremock-" + NAMESPACE_RIGHT, Phase.CREATE, false);
Expand All @@ -143,6 +147,8 @@ static void beforeAll() throws Exception {

@AfterAll
static void afterAll() throws Exception {
rbacApi.deleteClusterRoleBinding(clusterRoleBinding.getMetadata().getName(), null, null, null, null, null,
null);
Commons.cleanUp(DISCOVERY_SERVER_APP_NAME, K3S);
Commons.cleanUp(SPRING_CLOUD_K8S_DISCOVERY_CLIENT_APP_NAME, K3S);

Expand Down

0 comments on commit 3ed982a

Please sign in to comment.