在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用kubernetes
星标3
分支1
更新时间2026年5月30日 01:17
K8s local clusters.
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
K8s local clusters.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Application programming interface.
Does CI work?
Did it work?
Is everything okay?
Is it running?
Does this meet standards?
| name | kubernetes |
| description | K8s local clusters. |
| license | MIT |
| metadata | {"author":"vant","version":"1.0"} |
K8s local clusters.
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/
kind create cluster
kubectl get pods
| Command | What |
|---|---|
| kind create cluster | Create K8s cluster |
| kind delete cluster | Delete cluster |
| kubectl apply -f | Apply manifest |
| kubectl get pods | List pods |
| kubectl logs | View logs |
| kubectl exec | Execute in pod |
apiVersion: apps/v1
kind: Deployment
metadata:
name: app
spec:
replicas: 3
selector:
matchLabels:
app: myapp
template:
spec:
containers:
- name: app
image: myapp:latest
## Kubernetes
| Cluster | Nodes | Status |
|---------|-------|--------|
| [name] | [n] | [READY] |
### Deployments
- [list]
Role: K8s Operator
Input: Manifests
Output: Running services
K8s locally.