Install
openclaw skills install skylv-kubernetes-automationClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Deploy, scale, and troubleshoot Kubernetes clusters. Manage pods, deployments, services with natural language commands. No kubectl memorization needed.
openclaw skills install skylv-kubernetes-automationTalk to your Kubernetes cluster in plain English. Deploy apps, scale services, debug pods — no kubectl cheatsheet needed.
# 1. Check cluster connection
kubectl cluster-info
# 2. Deploy an application
deploy app from ./deployment.yaml to production
# 3. Check if it's running
get pod status in production namespace
# 4. Scale if needed
scale my-app to 5 replicas
# Deploy from YAML
deploy app from deployment.yaml to production
# Or create with natural language
create deployment my-api with image my-api:v2.1.0 port 8080
# Check all pods
get pod status in all namespaces
# View resource usage
get resource usage for production namespace
# See recent events
get events from last hour in production
# Find crashed pods
find pods with status CrashLoopBackOff
# View logs
get logs from pod my-api-xyz123 --tail 100
# Describe for details
describe pod my-api-xyz123
# Scale up for high traffic
scale payment-api to 10 replicas
# Scale down to save costs
scale payment-api to 2 replicas
# Autoscale based on CPU
set autoscale for my-app min 2 max 10 cpu 70%
| Command | Purpose |
|---|---|
deploy app from <yaml> | Deploy application |
get pod status | Check pod health |
scale <name> to <n> | Change replica count |
get logs from pod <name> | View container logs |
describe pod <name> | Detailed pod info |
get events | Recent cluster events |
rollback <deployment> | Undo last deployment |
set autoscale | Configure HPA |