turbot/steampipe-mod-digitalocean-insights

Dashboard: DigitalOcean Kubernetes Cluster Dashboard

This dashboard answers the following questions:

  • How many clusters are in each region?
  • How many clusters are in degraded state?
  • How many clusters have automatic and surge upgrades disabled?
This dashboard contains 4 cards.

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 Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

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

Queries

This dashboard uses the the following queries:
select
count(*) as value,
'Automatic Upgrades Disabled' as label,
case count(*) when 0 then 'ok' else 'alert' end as "type"
from
digitalocean_kubernetes_cluster
where
not auto_upgrade;

Tags