turbot/steampipe-mod-gcp-insights

Dashboard: GCP Kubernetes Cluster Inventory Report

This report answers the following questions:

  • How many Kubernetes clusters are there across my projects?
  • When were the clusters created?
  • What is the operational status of each cluster?
  • What versions are running on master and nodes?
  • How many nodes are in each cluster?
  • Which clusters have Autopilot enabled?
  • What security features are enabled (Shielded Nodes, Database Encryption)?
  • What labels are applied to each cluster?
  • How are clusters distributed across projects and locations?
This dashboard contains 1 card and 1 table.

Usage

Install the mod:

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

Start the Powerpipe server:

steampipe service start
powerpipe server

Open http://localhost:9033 in your browser and select GCP Kubernetes Cluster Inventory Report dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run gcp_insights.dashboard.kubernetes_cluster_inventory_report --share

Queries

This dashboard uses the the following queries:
select count(*) as "Clusters" from gcp_kubernetes_cluster;

Tags