turbot/steampipe-mod-digitalocean-insights

Dashboard: DigitalOcean Kubernetes Cluster Detail

This dashboard answers the following questions for each cluster:

  • How is the cluster configured?
  • What tags are applied?
  • How is the VPC configured?
  • What relationships does the cluster have with other resources?
This dashboard contains 4 cards, 1 graph, 1 input and 4 tables.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

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

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run digitalocean_insights.dashboard.kubernetes_cluster_detail --share

Queries

This dashboard uses the the following queries:
select
'Automatic Upgrades' as label,
case
when auto_upgrade then 'Enabled'
else 'Disabled'
end as value,
case
when auto_upgrade then 'ok'
else 'alert'
end as "type"
from
digitalocean_kubernetes_cluster
where
urn = $1;

Tags