-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redis-operator per namespace or one for whole cluster? #78
Comments
Hi @normander, Exactly, the operator manages every RedisFailover created on the cluster. Why would you need to have one operator per namespace? |
actually, I have the same request. I'm having 2 separate environments in the same clusters |
@str1k3r @normander currently it is not possible run isolated instances of redis-operator controller in the same cluster. |
very useful case. thanks @rhefner1 |
@jchanam How can I delete only redis cluster(statefulset and deployment) per namespace? Right now when I'm doing this, redis-operator recreate statefulset and deployment. |
If you want to delete a deployed RedisFailover, you just have to delete that custom resource: kubectl -n <namespace> delete redisfailover <rf-name> The redis operator is always checking the redis failovers deployed are alive and available. That's why, if you delete the statefulsets or the deployments, they appear again. |
This issue is stale because it has been open for 45 days with no activity. |
This issue was closed because it has been inactive for 14 days since being marked as stale. |
I would like to deploy redisoperator and RedisFailover per namespace. How can I do this? For now each redisoperator trying to manage all RedisFailover.
The text was updated successfully, but these errors were encountered: