File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed
operator-framework-quarkus-extension
samples/quarkus/src/main/java/io/javaoperatorsdk/operator/sample Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2929 </dependency >
3030 <dependency >
3131 <groupId >io.quarkus</groupId >
32- <artifactId >quarkus-kubernetes -client-deployment</artifactId >
32+ <artifactId >quarkus-openshift -client-deployment</artifactId >
3333 </dependency >
3434 <dependency >
3535 <groupId >io.quarkus</groupId >
Original file line number Diff line number Diff line change 2929 </dependency >
3030 <dependency >
3131 <groupId >io.quarkus</groupId >
32- <artifactId >quarkus-kubernetes -client</artifactId >
32+ <artifactId >quarkus-openshift -client</artifactId >
3333 </dependency >
3434 <dependency >
3535 <groupId >io.quarkus</groupId >
Original file line number Diff line number Diff line change 3535 </dependency >
3636 <dependency >
3737 <groupId >io.quarkus</groupId >
38- <artifactId >quarkus-test-kubernetes -client</artifactId >
38+ <artifactId >quarkus-test-openshift -client</artifactId >
3939 <scope >test</scope >
4040 </dependency >
4141 <dependency >
Original file line number Diff line number Diff line change 11package io .javaoperatorsdk .operator .sample ;
22
3+ import io .fabric8 .openshift .client .OpenShiftClient ;
34import io .javaoperatorsdk .operator .Operator ;
45import io .quarkus .runtime .Quarkus ;
56import io .quarkus .runtime .QuarkusApplication ;
1011public class QuarkusOperator implements QuarkusApplication {
1112
1213 @ Inject Operator operator ;
14+ @ Inject OpenShiftClient client ;
1315
1416 public static void main (String ... args ) {
1517 Quarkus .run (QuarkusOperator .class , args );
You can’t perform that action at this time.
0 commit comments