-
Notifications
You must be signed in to change notification settings - Fork 261
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
Sockets subscribe to all resources instead of required namespace filter #7919
Comments
blocked by rancher/rancher#40196 |
Should be unblocked now via PRs: @cmurphy let me know if I'm mistaken. |
@gaktive yes the rancher PR is merged so this is ready to use. |
SetupBring up a single node Rancher instance based on the latest RC version This script will create 10 nginx deployments in 10 namespaces. #!/bin/bash
# Create 10 namespaces
for i in {1..10}
do
kubectl create namespace nginx-namespace-$i
done
# Create 10 Nginx deployments in each namespace
for i in {1..10}
do
for j in {1..10}
do
kubectl create deployment nginx-$j --image=nginx --namespace=nginx-namespace-$i
done
done In Rancher Manager, In Global Settings under Performance, Testing
|
Setup
Describe the bug
Sockets subscriptions for resources should be limited by the same attributes as their initial fetch request (id, selector, ns). It doesn't look like this is working for namespaces
To Reproduce
Expected Result
The text was updated successfully, but these errors were encountered: