-
-
Notifications
You must be signed in to change notification settings - Fork 810
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
[kubernetes module] Multiple instance share the same context #1081
Comments
Could you provide a link to what this refers to, or an example of how this should work? I don't use Kubernetes so more information is appreciated. |
Sure, here is an example of a simple config: wtf:
mods:
production:
type: kubernetes
enabled: true
kubeconfig: "/Users/user/.kube/config"
context: "prod-cluster"
namespaces:
- default
objects:
- pods
position:
top: 0
left: 1
height: 2
width: 1
refreshInterval: 300
title: "Production"
staging:
type: kubernetes
enabled: true
kubeconfig: "/Users/user/.kube/config"
context: "stage-cluster"
namespaces:
- default
objects:
- pods
position:
top: 0
left: 2
height: 2
width: 1
refreshInterval: 300
title: "Staging" This should give me 2 panels, one containing pods running in |
/assign |
References issue wtfutil#1081
What's broken?
When using multiple instances of the
kubernetes
module, setting different context has no effect. Only one context is used for both instances.The text was updated successfully, but these errors were encountered: