Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (19 loc) · 1.58 KB

README.md

File metadata and controls

32 lines (19 loc) · 1.58 KB

⚠️This project is now part of the ArkMQ initiative. This repository has been archived as all activities are now happening in the corresponding ArkMQ repository. See here for the ArkMQ transition details.


ActiveMQ Artemis Operator

This project is a Kubernetes operator to manage the Apache ActiveMQ Artemis message broker.

Status

The current api version of all main CRDs managed by the operator is v1beta1.

Quickstart

The quickstart.md provides simple steps to quickly get the operator up and running as well as deploy/managing broker deployments.

Building

The building.md describes how to build operator and how to test your changes

OLM integration

The bundle.md contains instructions for how to build operator bundle images and integrate it into Operator Liftcycle Manager framework.

Debugging operator inside a container

Install delve in the builder container, i.e. RUN go install github.com/go-delve/delve/cmd/dlv@latest Disable build optimization, i.e. go build -gcflags="all=-N -l" Copy delve to the base-env container, i.e. COPY --from=builder /go/bin/dlv /bin Execute operator using delve, i.e. /bin/dlv exec --listen=0.0.0.0:40000 --headless=true --api-version=2 --accept-multiclient ${OPERATOR} $@