RabbitMQ has two operators. Their docs claim you have to install the first, spin up a cluster, _then_ add the other operator. I'm testing installing both operators at once.
14 lines
470 B
YAML
14 lines
470 B
YAML
# Both upstream operators define the namespace 'rabbitmq-system'. We need to
|
|
# remove one of those resources to avoid problems.
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: rabbitmq-system # This is the NS that the upstream manifest creates
|
|
resources:
|
|
- https://github.com/rabbitmq/cluster-operator/config/installation?ref=v2.10.0
|
|
|
|
images:
|
|
- name: rabbitmqoperator/cluster-operator
|
|
newTag: 2.10.0
|
|
|
|
patches:
|
|
- path: ns.delete.yaml
|