用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/G1Joshi/Agent-Skills --skill kubernetes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | kubernetes |
| description | Kubernetes container orchestration with Helm, operators, and service mesh. Use for cluster management. |
Kubernetes is the standard for orchestrating containerized applications. In 2025, the Gateway API has replaced Ingress as the standard for traffic routing, and Sidecars are native.
# Gateway (The Load Balancer)
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: my-gateway
spec:
gatewayClassName: nginx
listeners:
- name: http
protocol: HTTP
port: 80
---
# HTTPRoute (The Routing Rule)
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: my-app
spec:
parentRefs:
- name: my-gateway
rules:
- matches:
- path:
type: PathPrefix
value: /api
backendRefs:
- name: my-service
port: 8080
API Server, etcd, Scheduler. The brain of the cluster.
The successor to Ingress. Split roles between Infrastructure Provider (GatewayClass), Cluster Operator (Gateway), and Developer (HTTPRoute/GRPCRoute).
Extend K8s API. Used by Operators (e.g., Prometheus Operator, Postgres Operator) to manage complex stateful apps.
Do:
Ingress resources.restartPolicy: Always for init containers, making sidecars first-class.Don't:
latest tag: Always pin image versions (SHA or specific tag) for reproducibility.