Skip to content

Commit 6eb11ae

Browse files
committed
1.7.0 news
1 parent 433335c commit 6eb11ae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,21 @@ This version marks another important step in bringing the Kubernetes Operator pa
1919
get much reduced boilerplate code. Metadata annotations move from the Controller to Custom Resource class leading to
2020
more intuitive configuration.
2121

22+
See: [Tomcat.java](https://github.com/java-operator-sdk/java-operator-sdk/blob/master/samples/tomcat/src/main/java/io/javaoperatorsdk/operator/sample/Tomcat.java)
23+
2224
***Generalized event system*** - a Controller can be invoked because of events happening not only to the Custom Resource
2325
it manages, but also to dependent resources. These dependent resources might be Kubernetes objects or anything else
2426
(e.g. an RDS database created by the Operator). You can implement your own EventSource for any events needed and it
2527
will all be handled by the system seamlessly while avoiding concurrency issues.
2628

29+
See: [DeploymentEventSource.java](https://github.com/java-operator-sdk/java-operator-sdk/blob/master/samples/tomcat/src/main/java/io/javaoperatorsdk/operator/sample/DeploymentEventSource.java)
30+
2731
***Full integration with the Quarkus framework*** - For those who like building cloud native Java apps with Quarkus,
2832
we now provide full support in the form of a Quarkus extension. This means effortless Docker image building, fast
2933
startup time and native executable compilation our of the box.
3034

35+
See: [QuarkusOperator.java](https://github.com/java-operator-sdk/java-operator-sdk/blob/master/samples/quarkus/src/main/java/io/javaoperatorsdk/operator/sample/QuarkusOperator.java)
36+
3137
# Features
3238
* Framework for handling Kubernetes API events
3339
* Mapping Custom Resources to Java classes

0 commit comments

Comments
 (0)