This project is a Kubernetes operator to manage the Apache ActiveMQ Artemis message broker.
The current api version of all main CRDs managed by the operator is v1beta1.
The quickstart.md provides simple steps to quickly get the operator up and running as well as deploy/managing broker deployments.
The building.md describes how to build operator and how to test your changes
The bundle.md contains instructions for how to build operator bundle images and integrate it into Operator Liftcycle Manager framework.
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} $@