I've executed the Getting Started section to install the NATS Operator and the NATS Streaming operator by copying those four yaml files locally and running helm install in the project directory.
Is this supposed to be happening under the hood? How can I stop this example-nats cluster from being created when installing the operators?
level=info msg="started workers" pkg=controller
level=info msg="waiting for pod \"default/example-nats-1\" to become ready" cluster-name=example-nats namespace=default pkg=cluster
level=info msg="pod \"default/example-nats-1\" became ready" cluster-name=example-nats namespace=default pkg=cluster
level=info msg="waiting for pod \"default/example-nats-2\" to become ready" cluster-name=example-nats namespace=default pkg=cluster
level=info msg="pod \"default/example-nats-2\" became ready" cluster-name=example-nats namespace=default pkg=cluster
level=info msg="waiting for pod \"default/example-nats-3\" to become ready" cluster-name=example-nats namespace=default pkg=cluster
level=info msg="pod \"default/example-nats-3\" became ready" cluster-name=example-nats namespace=default pkg=cluster
I've executed the Getting Started section to install the NATS Operator and the NATS Streaming operator by copying those four yaml files locally and running helm install in the project directory.
helm install --name my-app --namespace default helm/test
The CRDs get created as expected. The operator pods get created which I believe is also expected but not 100% sure from the README.
What I'm not expecting is the example-nats pods getting created.
The example-nats pods should be created when content below is applied which I have not done.
In the nats-operator logs, I see that it is starting works and waiting for the example-nats pods to be running.
I don't see anything in https://github.com/nats-io/nats-operator/releases/download/v0.5.0/10-deployment.yaml, or the other three files, about creating "example-nats".
Is this supposed to be happening under the hood? How can I stop this example-nats cluster from being created when installing the operators?