Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: David Kornel <[email protected]>
  • Loading branch information
kornys committed Feb 29, 2024
1 parent 8419add commit 047703d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
import io.fabric8.kubernetes.api.model.ServiceAccount;
import io.fabric8.kubernetes.api.model.ServiceAccountList;
import io.fabric8.kubernetes.client.dsl.MixedOperation;
import io.fabric8.kubernetes.client.dsl.Resource;
import io.skodjob.testframe.interfaces.NamespacedResourceType;

public class ServiceAccountResource implements NamespacedResourceType<ServiceAccount> {

private final MixedOperation<ServiceAccount, ServiceAccountList, Resource<ServiceAccount>> client;
private final MixedOperation<ServiceAccount, ServiceAccountList,
io.fabric8.kubernetes.client.dsl.ServiceAccountResource> client;

public ServiceAccountResource() {
this.client = ResourceManager.getKubeClient().getClient().serviceAccounts();
Expand Down
2 changes: 2 additions & 0 deletions test-frame-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven.surefire.version}</version>
<configuration>
<test>io.skodjob.testframe.test.unit.**</test>
<properties>
Expand All @@ -91,6 +92,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven.surefire.version}</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 047703d

Please sign in to comment.