|
1 | 1 | ---
|
2 |
| -title: Java Operator SDK |
3 |
| -description: An SDK for writing Kubernetes Operators in Java |
| 2 | +title: java-operator-sdk |
| 3 | +description: Build Kubernetes Operators in Java without hassle |
4 | 4 | layout: homepage
|
5 | 5 | ---
|
6 | 6 |
|
7 |
| -# Problems Solved |
8 |
| - |
9 |
| -* Scheduling of Kubernetes events |
10 |
| -* Removing boilerplate code for API access |
11 |
| -* Retrying of failed updates |
12 |
| -* Management of Finalizers to ensure DELETE events aren't lost |
13 |
| -* Handling concurrency |
14 |
| -* You don't have to write Go! |
15 |
| - |
16 |
| -# Roadmap |
17 |
| -* Docker image building |
18 |
| -* Kubernetes manifest deployment |
19 |
| -* CLI tool |
20 |
| -* Spring boot integration |
21 |
| -* Quarkus |
| 7 | +#### Features |
| 8 | +* Framework for handling Kubernetes API events |
| 9 | +* Registering Custom Resource watches |
| 10 | +* Retry action on failure |
| 11 | +* Smart event scheduling (only handle latest event for the same resource) |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | +#### Why build your own Operator? |
| 16 | +* Infrastructure automation using the power and flexibility of Java. See [blog post](https://blog.container-solutions.com/cloud-native-java-infrastructure-automation-with-kubernetes-operators). |
| 17 | +* Provisioning of complex applications - avoiding Helm chart hell |
| 18 | +* Integration with Cloud services - e.g. Secret stores |
| 19 | +* Safer deployment of applications - only expose cluster to users by Custom Resources |
| 20 | + |
| 21 | + |
| 22 | + |
| 23 | +#### Roadmap |
| 24 | +* Testing of the framework and all samples while running on a real cluster. |
| 25 | +* Generate a project skeleton |
| 26 | +* Generate Java classes from CRD definion (and/or the other way around) |
| 27 | +* Integrate with Quarkus (including native image build) |
| 28 | +* Integrate with OLM (Operator Lifecycle Manager) |
22 | 29 |
|
23 | 30 | [Maven](https://mvnrepository.com/artifact/com.github.containersolutions/java-operator-sdk){:.button-text}
|
24 | 31 | [GitHub](https://github.com/ContainerSolutions/java-operator-sdk){:.button-text}
|
0 commit comments