Eks Overview
Every EKS cluster with Kubernetes version, node groups, add-ons and upcoming upgrade windows.
What this pane shows
All EKS clusters in the account, each with their Kubernetes version, control-plane logging configuration, attached node groups (with instance types and sizes), installed add-ons (CoreDNS, kube-proxy, VPC CNI, etc.) and any EKS-managed add-on update windows AWS has scheduled.
Key use cases
- Inventory Kubernetes versions across clusters before a fleet upgrade.
- Catch clusters running an end-of-life Kubernetes minor version.
- Audit which clusters have control-plane logs going to CloudWatch.
- Plan add-on upgrade cadence across a multi-cluster estate.
How to embed
lp.js is the single-entry loader: it injects the shared LightPane runtime
(and sd-embed.css) once per page. Add this pane's own stylesheet and script;
the pane mounts itself wherever the matching <div> is in the DOM.
<!-- In <head> — this pane's stylesheet -->
<link rel="stylesheet" href="https://lightpane.io/_pane-tests/aws/eks-overview/eks-overview.css">
<!-- Your access key (inline, or set window.lpEmbed.accessKey from your own JS) -->
<script>window.lpEmbed = { accessKey: "<your-access-key>" };</script>
<!-- Where the pane should appear -->
<div class="lp-eks-overview-panel" data-lp-account="<your-account-alias>"></div>
<!-- Before </body> — shared loader + this pane's script -->
<script src="https://lightpane.io/embed/lp.js"></script>
<script src="https://lightpane.io/_pane-tests/aws/eks-overview/eks-overview.js" defer></script>
Tier
Available on Explorer and above.
Build notes
Stage 1 wiring (2026-04-28): cluster cards live via lp-fetch.js (service eks_clusters); node-groups + addons sections stay on mock until matching service definitions land
Mock-only at the moment — live-wiring tracked in the roadmap.