Test and Refine Your Kubernetes Skill
You built your Kubernetes skill in Lesson 0 and refined it through Lessons 1-14. Now validate that it actually transfers to new projects.
A skill that only works for your FastAPI agent isn't a skill—it's a template. True skills guide decisions across different application types.
Choose a Different Application
Pick one application type you haven't deployed in this chapter:
| Type | Characteristics |
|---|---|
| Data processing job | Runs 1-2 hours, high CPU/memory, processes large files |
| Node.js web service | HTTP requests, external API connections, high availability |
| Go batch processor | Runs periodically, external config, needs graceful shutdown |
| Python API gateway | Routes to multiple backends, high volume, low latency |
The application type doesn't matter. What matters: it's different enough from your FastAPI agent that you can't copy manifests from Lesson 14.
Work Through Your Skill
Using only your skill (not Lesson 14's code), answer these questions for your chosen application:
1. Resource Planning
- What CPU and memory requests/limits would you set?
- How did you arrive at these numbers?
2. Health Checking
- What probes does this application need?
- How would you implement them?
3. Configuration
- What belongs in ConfigMaps vs Secrets?
- How would you inject them?
4. Labels
- How would you structure labels for this application?
- What queries would operators run against these labels?
5. Deployment Strategy
- What special considerations exist for updating this application?
- Does it need different rollout parameters than your agent?
Your skill should guide you through these decisions without prescribing specific answers.
Identify Gaps
After working through your skill on a different application:
| Question | Your Answer |
|---|---|
| What worked? | Which guidance forced useful analysis? |
| What was missing? | What decisions did the skill not address? |
| What was too prescriptive? | Did any guidance feel like rules instead of frameworks? |
Document 2-3 specific gaps you discovered.
Refine Your Skill
Open your skill at .claude/skills/kubernetes-deployment/SKILL.md and add:
- Missing decision points — Questions your skill didn't help you answer
- Application-specific patterns — Guidance for batch jobs, gateways, or other types you tested
- Edge cases — Situations where the general guidance doesn't apply
Your skill grows with each application you deploy.
Try With AI
Validate skill transferability with Claude:
I have a Kubernetes deployment skill I built during this chapter. Now I want
to deploy a [your chosen application type] that:
- [characteristic 1]
- [characteristic 2]
- [characteristic 3]
Using my skill (attached), walk me through the deployment decisions. As you
work through each decision point, tell me:
- Which parts of my skill guide clearly?
- Where is guidance missing or unclear?
- What should I add to make this skill work for this application type?
[Paste your SKILL.md content]
What you're learning: How to validate that intelligence you've captured actually transfers to new contexts—the difference between a template and a skill.
Reflection
Your skill started from official documentation in Lesson 0. Through 14 lessons, you learned what those patterns mean in practice. Now you've tested whether your skill captures that learning in transferable form.
A well-designed skill guides fundamentally similar decisions (resource balance, health checking, configuration injection) even when the specific answers differ by application type.
Next: Optional lessons 16-22 cover advanced patterns. Each one is an opportunity to extend your skill with specialized guidance.