Kubernetes plugin - best practices for working with multiple clusters #1264
-
At @avito-tech we have tens of Kubernetes clusters already (and growing), so when I tried using Kubernetes plugin for querying what we have, I quickly realized that it's really inconvenient to query across multiple clusters — every Kubernetes context is in different connection. But looking, for example, at AWS plugin, there's I've looked at the plugins available right now, and most of them are either single-instance or SaaS-like (where you already have single or few accounts, like AWS), but Kubernetes case is quite different from that. What's the best practices for working with "multiple instances" setups like the one that we have? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The recommended best practice is to:
Aggregator docs - https://steampipe.io/docs/using-steampipe/managing-connections#using-aggregators
Each table in the kubernetes plugin then has a Does that help? |
Beta Was this translation helpful? Give feedback.
The recommended best practice is to:
Aggregator docs - https://steampipe.io/docs/using-steampipe/managing-connections#using-aggregators
Each table in the kubernetes plugin then has a
context_name
column so you can work out which cluster / connection the results are coming from.Does that help?