mcpbeat

Rhdh Eks Lifecycle

openshift/rhdh-eks-lifecycle

>- Check EKS Kubernetes version support status using the official AWS EKS docs source and compare against versions configured in CI config files. Use whenever someone asks about EKS K8s version support, EOL dates, or whether the configured EKS version is still in standard support. Also use when planning EKS K8s version upgrades — run this before using rhdh-eks-tests to make changes.

2k tokens
context cost
the whole folder, loaded on every use
5
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
325
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/openshift/release --skill rhdh-eks-lifecycle

What comes with it

3 783 bytes besides the instruction
OWNERS
scripts/OWNERS
scripts/check-eks-lifecycle.sh
scripts/print-configured-versions.sh

What it tells the agent to use

found in the instruction text
Bash runs shell commands — read the instruction before connecting
WebFetch fetches pages from the network

The instruction itself

7 sections, as written by the author

Check EKS Kubernetes Version Lifecycle

When to Use

  • Check if the configured EKS K8s version is still supported
  • Find the newest GA version available on EKS
  • See which K8s version each RHDH release branch is using for EKS tests
  • Before updating the EKS K8s version (use rhdh-eks-tests to make changes)

Prerequisites

  • curl, jq, yq (v4+), awk, internet connectivity

Steps

  • Run the lifecycle check script:
bash "${CLAUDE_SKILL_DIR}/scripts/check-eks-lifecycle.sh" \
  --mapt-ref ci-operator/step-registry/redhat-developer/rhdh/eks/mapt/create/redhat-developer-rhdh-eks-mapt-create-ref.yaml \
  --test-pattern "^e2e-eks-"

The script queries two sources:

  • Primary: awsdocs/amazon-eks-user-guide raw AsciiDoc on GitHub — official AWS EKS docs source with standard/extended support status and release calendar
  • Cross-verify: https://endoflife.date/api/amazon-eks.json — community-maintained EOL dates
  • If the API call fails, fall back to the vendor docs:
WebFetch https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions.html

Interpreting Results

The script outputs four sections:

  • Configured MAPT_KUBERNETES_VERSION per branch — shows what each RHDH release branch is currently using. If a version shows "N/A", the test entry may be missing the env var.
  • Supported minor versions — lists versions with their support tier:
  • Standard: actively supported, receives patches and security updates
  • Extended: past standard support end date but still receives critical patches (at additional cost on AWS)
  • Prefer Standard-tier versions for CI tests to avoid extended support costs and align with upstream
  • Release calendar — shows upstream release date, EKS release date, and end dates for both standard and extended support. Use this to plan ahead for upcoming EOL dates.
  • Cross-verify (endoflife.date) — independent EOL and extended support dates. If these disagree with the primary source, investigate further before making changes.

Action

Always update the main branch to the newest Standard version. If the configured version on main is not the newest Standard version, proceed to update it using the rhdh-eks-tests skill to change MAPT_KUBERNETES_VERSION in the main CI config file.

For release branches (e.g., release-1.9, release-1.8), ask the user whether they should also be updated before making changes.

  • rhdh-eks-tests: Update the EKS K8s version and list test entries

How to use it

Copy the folder

Take openshift/rhdh-eks-lifecycle from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.