Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aws-samples avatar

Eks Upgrade Check

  • 6 installs
  • 39 repo stars
  • Updated August 4, 2026
  • aws-samples/sample-apex-skills

eks-upgrade-check is a Claude Code skill that assesses EKS cluster upgrade readiness across 8 areas and calculates a 0-100 readiness score with a remediation report.

About

This skill assesses whether a live EKS cluster is safe to upgrade to a new Kubernetes version. It runs automated checks across 8 areas including breaking changes, deprecated APIs, add-on compatibility, and node readiness, then calculates a 0-100 readiness score with a hard-blocker override. It produces a report with prioritized remediation and pre-filled AWS CLI commands.

  • Assesses EKS cluster upgrade readiness across 8 areas
  • Calculates a 0-100 readiness score with a hard-blocker override
  • Generates a markdown/HTML report with prioritized remediation and pre-filled CLI commands

Eks Upgrade Check by the numbers

  • 6 all-time installs (skills.sh)
  • Ranked #1,067 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

eks-upgrade-check capabilities & compatibility

Capabilities
devops · security audit
Works with
aws · kubernetes
Use cases
devops
Pricing
Bring your own API key
From the docs

What eks-upgrade-check says it does

Assess EKS cluster upgrade readiness — run automated checks across 8 areas
SKILL.md
This skill is laser-focused on **upgrade safety**
SKILL.md
npx skills add https://github.com/aws-samples/sample-apex-skills --skill eks-upgrade-check

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs6
repo stars39
Last updatedAugust 4, 2026
Repositoryaws-samples/sample-apex-skills

What it does

Assess EKS cluster upgrade readiness across 8 areas and produce a scored report with remediation steps.

Who is it for?

Deciding whether it is safe to upgrade an EKS cluster to the next Kubernetes version.

Skip if: Cluster discovery, operational-posture audits, or architecture design advice.

When should I use this skill?

Someone asks whether they can upgrade their cluster or what is blocking an upgrade.

What you get

A 0-100 upgrade readiness score and report with prioritized remediation and pre-filled upgrade commands.

  • 0-100 upgrade readiness score
  • Markdown/HTML report with prioritized remediation and pre-filled CLI commands

By the numbers

  • 8 assessment areas
  • 0-100 readiness score
  • Hard-blocker caps score at 59%

Files

SKILL.mdMarkdownGitHub ↗

EKS Upgrade Readiness Skill

Overview

This skill assesses your live EKS cluster's readiness for a Kubernetes version upgrade. It connects to your cluster via AWS CLI and kubectl, runs automated checks across 8 assessment areas, calculates a readiness score (0-100%), and produces a detailed report with prioritized remediation steps and pre-filled AWS CLI commands.

This skill is laser-focused on upgrade safety — answering the question: "Is it safe to upgrade this cluster to the next version?"

What Gets Assessed

#SectionKey Checks
01Version ValidationUpgrade path validity, version skew policy, support status
02Breaking ChangesVersion-specific API removals, behavioral changes, resource impact
03Deprecated API DetectionLive scan of cluster resources for deprecated/removed APIs
04Add-on CompatibilityCore add-on versions, OSS add-on matrix, Karpenter compatibility
05Node ReadinessNode version skew, AL2→AL2023 migration, AMI compatibility
06Workload RisksSingle replicas, missing PDBs, health probes, resource requests
07AWS Upgrade InsightsOfficial EKS pre-upgrade checks and recommendations
08Upgrade PlanPre-filled CLI commands, step-by-step upgrade sequence

Readiness Score

The skill calculates a weighted readiness score:

CategoryMax DeductionRationale
Breaking Changes25 ptsHighest risk — can break apps
Deprecated APIs20 ptsActionable, fixable pre-upgrade
Node Readiness (skew + subnet IPs)20 ptsCan block upgrade entirely
Unsupported Version15 ptsNo security patches, urgent upgrade needed
Add-on Compatibility15 ptsCritical > optional add-ons
Karpenter10 ptsOnly if installed
Workload Risks10 ptsBest-practice, not blockers
AWS Upgrade Insights10 ptsOfficial AWS checks
AL2 Nodes / Behavioral10 ptsInformational

Hard Blocker Override: If any hard blocker is detected (e.g., incompatible Karpenter, critical add-on DEGRADED, subnet IPs < 5, cluster not ACTIVE), the score is capped at ≤ 59% (NOT READY) regardless of other findings. See references/report-generation.md for the full list.

Score Interpretation:

  • 90-100: READY — Safe to proceed
  • 80-89: GOOD — Minor issues, can proceed with caution
  • 70-79: FAIR — Several issues need attention first
  • 60-69: RISKY — Significant issues, not recommended yet
  • 0-59: NOT READY — Critical blockers, must resolve first

Prerequisites

1. AWS credentials configuredaws configure or ~/.aws/credentials with EKS access 2. kubectl access to the target cluster (for Kubernetes API queries) 3. Required AWS Permissions:

  • eks:DescribeCluster, eks:ListClusters, eks:ListNodegroups, eks:DescribeNodegroup
  • eks:ListAddons, eks:DescribeAddon, eks:ListInsights, eks:DescribeInsight
  • ec2:DescribeSubnets
  • iam:GetRole, iam:ListAttachedRolePolicies, iam:ListRolePolicies, iam:GetRolePolicy

MCP Server Setup

This skill works without any MCP server — it falls back to AWS CLI and kubectl commands. That fallback path is the default in apex.

For richer EKS operations (live cluster reads, upgrade insights, K8s resource introspection), enable the EKS MCP server via the apex eks-mcp-server skill — it walks you through both AWS-hosted and self-hosted setup options. Once configured, this skill will prefer MCP tools over CLI for EKS operations.

Note: Apex does NOT ship a project-root .mcp.json. MCP setup is opt-in and user-driven through the eks-mcp-server skill.

Configuration

The skill uses your existing AWS credentials. No additional configuration needed if aws eks list-clusters works from your terminal.

To use a specific profile or region, set environment variables:

export AWS_PROFILE=your-profile-name
export AWS_REGION=your-region

Getting Started

Invoke the skill: /eks-upgrade-check

Or simply ask: "Run an EKS upgrade readiness assessment"

The skill will discover your clusters, ask which one to assess and what target version, then run the full assessment.

---

Assessment Workflow

Step 0: Pre-flight

Action 1 — List clusters (test connectivity & discover clusters)

Run aws eks list-clusters to discover available clusters.

  • ✅ Success → Show the cluster list. Ask which cluster to assess. If only one cluster, confirm it.
  • ❌ Failure → STOP. Do NOT retry more than once. Show:
Cannot access EKS clusters. Try these steps:
1. Check that AWS credentials are configured: aws sts get-caller-identity
2. Check your region: aws eks list-clusters --region <region>
3. Check that MCP servers are enabled in Claude Code

Wait for the user to resolve the issue.

Action 2 — Describe the selected cluster

Run aws eks describe-cluster --name <cluster> and show: cluster name, Kubernetes version, platform version, region, status, account ID.

Action 2b — Validate cluster status

Check the status field from the cluster description. If status is NOT ACTIVE:

  • CREATING/UPDATING/DELETING → STOP. Show: "Cluster is currently in <status> state. The EKS API will reject an upgrade request. Wait for the operation to complete, then re-run this assessment."
  • FAILED → STOP. Show: "Cluster is in FAILED state. This is a hard blocker — the cluster must be recovered before an upgrade can be attempted. Contact AWS Support if the cluster is stuck in FAILED."

Do NOT proceed with the assessment if cluster status is not ACTIVE. This is a hard blocker (see report-generation.md).

Action 3 — Validate permissions

After describing the cluster, verify key permissions by attempting: 1. aws eks list-nodegroups --cluster-name <cluster> 2. aws eks list-addons --cluster-name <cluster> 3. aws eks list-insights --cluster-name <cluster>

If any fail with AccessDenied, show the user exactly which permission is missing and list the required IAM actions. Do NOT proceed until permissions are confirmed.

Action 4 — Determine target version

Ask: "Your cluster is on v[current]. The next version is v[current+1]. Shall I assess upgrade readiness to v[current+1]?"

If the user specifies a version more than 1 minor version ahead, explain that EKS requires one-version-at-a-time upgrades and show the required path (e.g., 1.29 → 1.30 → 1.31 → 1.32). Offer to assess the first hop.

Action 5 — Confirm and proceed

Steps 1-8: Run Assessment

Read each steering file in order from ${CLAUDE_SKILL_DIR}/references/. For each section: 1. Read the steering file 2. Execute the checks described in it using AWS CLI and kubectl commands 3. Collect findings with severity ratings

Steering file loading guide:

User RequestSteering File(s)
Full upgrade assessmentALL files in order
Version / upgrade pathreferences/version-validation.md
Breaking changes / API removalsreferences/breaking-changes.md
Deprecated APIsreferences/deprecated-apis.md
Add-on compatibility / Karpenterreferences/addon-compatibility.md
Node readiness / AL2 / AMIreferences/node-readiness.md
Workload risks / PDB / probesreferences/workload-risks.md
AWS Insightsreferences/upgrade-insights.md
Generate reportreferences/report-generation.md

Step 9: Calculate Score & Generate Report

Read ${CLAUDE_SKILL_DIR}/references/report-generation.md and produce the report.

---

Tool Usage Rules

1. Do NOT call any tools when this skill is first activated. Wait for the user to ask. 2. Do NOT hardcode or guess cluster names. Always discover by listing first. 3. Do NOT retry a failed command more than once. 4. Always read the relevant steering file before executing checks for that section. 5. Use `aws` CLI and `kubectl` for cluster queries. If MCP servers are available, prefer them for EKS operations.

Data Files

  • OSS Add-on Registry: ${CLAUDE_SKILL_DIR}/data/oss_addon_registry.json — identifiers and authoritative upstream URLs for common OSS add-ons. This file does NOT contain compatibility data. Compatibility is always verified live via the registry's compatibility_url and releases_url fields. If an add-on is not in the registry or the upstream source is unreachable, report UNKNOWN — never guess.
  • HTML Converter: ${CLAUDE_SKILL_DIR}/tools/md_to_html.py — converts markdown reports to HTML

Report Output

  • Markdown: EKS-Upgrade-Assessment-<cluster>-<version>-<YYYY-MM-DD>-<HHMM>.md
  • HTML: Run python3 ${CLAUDE_SKILL_DIR}/tools/md_to_html.py <report>.md to convert

Do NOT generate HTML manually. Always use the conversion script.

Related skills

FAQ

How is the readiness score calculated?

A weighted 0-100 score across the 8 areas, capped at 59% (NOT READY) if any hard blocker like an incompatible Karpenter or a degraded critical add-on is detected.

Does it need the EKS MCP server?

No; it falls back to AWS CLI and kubectl by default, and prefers MCP tools when the EKS MCP server is configured.

DevOps & CI/CDinframonitoring

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.