Skip to content

Commit 7861384

Browse files
authored
fix: use kubernetes client instead of openshift (#24)
1 parent 5f9cfad commit 7861384

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<!-- We use the OpenShift client, because functionally it is a superset of the Kubernetes client -->
5454
<dependency>
5555
<groupId>io.fabric8</groupId>
56-
<artifactId>openshift-client</artifactId>
56+
<artifactId>kubernetes-client</artifactId>
5757
</dependency>
5858

5959
<dependency>

core/src/main/java/io/javaoperatorsdk/webhook/conversion/AsyncConversionController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
public class AsyncConversionController implements AsyncConversionRequestHandler {
1919

2020
private static final Logger log = LoggerFactory.getLogger(ConversionController.class);
21-
21+
2222
@SuppressWarnings("rawtypes")
2323
private final Map<String, AsyncMapper> mappers = new HashMap<>();
2424

0 commit comments

Comments
 (0)