https://github.com/operator-framework/java-controller-runtime
Repo for the Java controller-runtime.
https://github.com/operator-framework/java-controller-runtime
Last synced: 3 months ago
JSON representation
Repo for the Java controller-runtime.
- Host: GitHub
- URL: https://github.com/operator-framework/java-controller-runtime
- Owner: operator-framework
- License: apache-2.0
- Created: 2020-08-24T15:17:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-17T20:06:20.000Z (over 4 years ago)
- Last Synced: 2025-03-23T23:27:11.235Z (3 months ago)
- Language: Java
- Homepage:
- Size: 61.5 KB
- Stars: 8
- Watchers: 4
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# java-controller-runtime
#### Steps to run the Example Operator with Controller Locally
- First Clone the repository and run the command mvn clean install
- This will create an mvn repository for your project. You
can check that locally on below path .m2/repository/io/fabric8
- After successful compilation of java-controller-runtime, go to the example folder
- Before running the operator, first create CRD and CR with command kubectl create -f src/main/resources
- Then, run the operator first mvn clean install on example operator and then target
folder has .jar file created for it.
- Go to target folder and run the application with command
java -jar memcached-java-operator-1.0-SNAPSHOT-jar-with-dependencies.jar
- You can check the number of pods running with command kubectl get pods