This project has the following directory structure:
docs
: Helm charts, Javadoc, Operator REST API Swagger, and Domain referencedocs-source
: This documentationintegration-tests
: Original, JUnit 4 integration test suite (see also new-integration-tests
)json-schema
: Java model to JSON schema generatorjson-schema-maven-plugin
: Maven plugin for schema generatorkubernetes/charts
: Helm chartskubernetes/samples
: All samples, including for WebLogic domain creationnew-integration-tests
: JUnit 5 integration test suite (see also integration-tests
)operator
: Operator runtimesite
: Historical documentationsrc/scripts
: Scripts operator injects into WebLogic Server instance Podsswagger
: Swagger files for the Kubernetes API server and Domain typeThe Watch API in the Kubernetes Java client provides a watch capability across a specific list of resources for a limited amount of time. As such, it is not ideally suited for our use case, where a continuous stream of watches is desired, with watch events generated in real time. The watch-wrapper in this repository extends the default Watch API to provide a continuous stream of watch events until the stream is specifically closed. It also provides resourceVersion
tracking to exclude events that have already been seen. The watch-wrapper provides callbacks so events, as they occur, can trigger actions.