feat: add qovery-cluster-ops skill (node churn, Karpenter, upgrades) - #18
Open
Guimove wants to merge 1 commit into
Open
feat: add qovery-cluster-ops skill (node churn, Karpenter, upgrades)#18Guimove wants to merge 1 commit into
Guimove wants to merge 1 commit into
Conversation
…rades) Ninth skill covering the cluster infrastructure layer: - Diagnosis playbooks: node churn, blocked consolidation, pending pods, node memory pressure, spot interruptions - Karpenter node pool tuning via the KARPENTER cluster feature (consolidate_after, stable pool consolidation window, requirements, limits, spot, node disks), applied through PUT cluster + deploy - Disruption resilience review (PDBs, do-not-disrupt, stable pool, multi-AZ spread) and Kubernetes upgrade preparation - Registered in install.sh/local-install.sh, README, sync-shared map; 4 eval scenarios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Three recurring cluster support cases have no skill today: nodes replaced so often that pods restart without crashing, clusters that never scale down after load drops, and pods stuck in Pending because a node pool hit its limits. The existing skills stop at the application layer. qovery-optimize's own reference says "Verify Karpenter is consolidating properly" without saying how, and qovery-troubleshoot's layer 8 only checks that Karpenter can provision nodes. No skill encodes the actual diagnosis or the fix, so every case is re-investigated by hand.
What
Every API field comes from qovery-openapi-spec (ClusterFeatureKarpenterParameters, KarpenterNodePool* schemas) and every CLI command from the qovery-cli source.
Why a separate skill, not an extension of qovery-troubleshoot
Structure
Follows the CLAUDE.md conventions: SKILL.md at 120 lines (triage, checklist, navigation table, quick reference), 7 self-contained reference files loaded on demand, slash command (reference only, not installed), 4 eval scenarios. No templates/scripts, so the User-Agent rule is covered by the _shared/auth.md runtime directive.
Test plan
Reviewer notes