Skip to content

Neo2308/operator-framework-java-operator-plugins

This branch is 1 commit ahead of, 5 commits behind operator-framework/java-operator-plugins:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5f38837 · Jul 25, 2024
Jul 25, 2024
Mar 21, 2023
Apr 30, 2021
Jul 25, 2024
May 22, 2024
Feb 24, 2021
Sep 19, 2023
Feb 7, 2024
Feb 7, 2024
Feb 24, 2021
May 25, 2021
Nov 3, 2021
Dec 4, 2020
Dec 4, 2020
Jul 25, 2024
Jul 25, 2024
Sep 18, 2021

Repository files navigation

Java Operator Plugin

Overview

This project is a component of the Operator Framework, an open source toolkit to manage Kubernetes native applications, called Operators, in an effective, automated, and scalable way. Read more in the introduction blog post.

Operators make it easy to manage complex stateful applications on top of Kubernetes. However writing an operator today can be difficult because of challenges such as using low level APIs, writing boilerplate, and a lack of modularity which leads to duplication.

License

Operator SDK is under Apache 2.0 license. See the LICENSE file for details.

Build and Install the Operator-SDK

go mod tidy
make install

Now that the plugin is integrated with the operator-sdk you can run the init command to generate the sample java operator

  • Use the quarkus plugin flag
  • Pick the domain and project name as prefered.
operator-sdk init --plugins quarkus --domain xyz.com --project-name java-op

Once the operator is scaffolded check for the following files

.
├── Makefile
├── PROJECT
├── pom.xml
└── src
    └── main
        ├── java
        └── resources
            └── application.properties

4 directories, 4 files

About

Operator SDK Java Plugin

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 96.0%
  • Shell 3.8%
  • Makefile 0.2%