| name | kubernetes-flux |
| description | Kubernetes cluster management and troubleshooting. Query pods, deployments, services, logs, and events. Supports context switching, scaling, and rollout management. Use for Kubernetes debugging, monitoring, and operations. |
| version | 1.0.0 |
| model | sonnet |
| invoked_by | both |
| user_invocable | true |
| tools | ["Read","Write","Bash"] |
| best_practices | ["Verify kubectl is configured before operations","Use namespace flags for clarity","Check current context before cluster operations","Avoid destructive operations without confirmation","Mask secrets in output"] |
| error_handling | graceful |
| streaming | supported |
| safety_level | high |
| verified | false |
| lastVerifiedAt | "2026-02-19T05:29:09.098Z" |
| source | builtin |
| trust_score | 100 |
| provenance_sha | 15696778535816f8 |
Kubernetes Flux Skill
Installation
The skill invokes the Flux CLI. Install:
- macOS/Linux (Homebrew):
brew install fluxcd/tap/flux
- macOS/Linux (script):
curl -s https://fluxcd.io/install.sh | sudo bash
- Windows (winget):
winget install -e --id FluxCD.Flux
- Windows (Chocolatey):
choco install flux
- Custom dir:
curl -s https://fluxcd.io/install.sh | bash -s ~/.local/bin
Verify: flux --version. Then use flux bootstrap to deploy controllers if needed.
Cheat Sheet & Best Practices
Bootstrap: flux bootstrap git --url=ssh://git@host/repo.git --path=clusters/my-cluster; use --branch, --interval, --private-key-file or --token-auth as needed.
Status: flux check — controllers/CRDs; flux get all -A — all resources; flux get kustomizations; flux tree kustomization <name> — managed objects.
Hacks: Use flux get sources git and flux get kustomizations to see sync state. Reconcile on demand: flux reconcile kustomization <name> --with-source. Pin versions with FLUX_VERSION on install script. Prefer Git over Helm for app manifests when using GitOps.
Certifications & Training
Kubernetes: CKA / CKAD (Linux Foundation). Flux: GitOps with Flux (LFS269). Skill data: Bootstrap, reconcile, status (flux check, flux get all), tree; GitOps workflow.
Hooks & Workflows
Suggested hooks: Pre-apply: flux check. Post-push (to Git repo used by Flux): optional reconcile trigger. Use with devops (always) for GitOps clusters.
Workflows: Use with (always). Flow: bootstrap or reconcile; debug with , . See skill and enterprise workflows.