turbot/steampipe-mod-kubernetes-insights

Dashboard: Kubernetes Node Detail

This dashboard answers the following questions for each node:

  • What relationships does the node have with other resources?
  • How is my node configured?
  • What labels and annotations are applied?
This dashboard contains 2 cards, 1 flow, 1 graph, 1 input and 8 tables.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/steampipe-mod-kubernetes-insights

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select Kubernetes Node Detail dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run kubernetes_insights.dashboard.node_detail --share

Queries

This dashboard uses the the following queries:
select
a ->> 'address' as "Address",
a ->> 'type' as "Type"
from
kubernetes_node,
jsonb_array_elements(addresses) as a
where
uid = $1;
{
"$1": "uid"
}

Tags