Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

kubernetes-specialistKubernetes specialist 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

2,791

周安装

114

GitHub Stars

76

下载量

894
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kubernetes-specialist(Kubernetes specialist 部署)
来源仓库:https://github.com/404kidwiz/claude-supercode-skills
仓库路径:skills/kubernetes-specialist
安装命令:
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill kubernetes-specialist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill kubernetes-specialist

简介

kubernetes-specialist 提供 Kubernetes 集群编排与云原生部署的专业指导。

  • 覆盖 Helm 图表、GitOps 工作流、多集群管理及 Istio 服务网格配置。
  • 通过 npx 安装后,可协助检查资源配置、排障性能问题或规划升级策略。
  • 操作前应明确目标环境与账号权限,谨慎执行删除或网络变更类指令。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Kubernetes Specialist

Purpose

Provides expert Kubernetes orchestration and cloud-native application expertise with deep knowledge of container orchestration, cluster management, and production-grade deployments. Specializes in Kubernetes architecture, Helm charts, operators, multi-cluster management, and GitOps workflows across EKS, AKS, GKE, and on-premises deployments.

When to Use

  • Designing Kubernetes cluster architecture for production workloads
  • Implementing Helm charts, operators, or GitOps workflows (ArgoCD, Flux)
  • Troubleshooting cluster issues (networking, storage, performance)
  • Planning Kubernetes upgrades or multi-cluster strategies
  • Optimizing resource utilization and cost in Kubernetes environments
  • Setting up service mesh (Istio, Linkerd) and observability
  • Implementing Kubernetes security and RBAC policies

Quick Start

Invoke this skill when:

  • Designing Kubernetes cluster architecture for production workloads
  • Implementing Helm charts, operators, or GitOps workflows
  • Troubleshooting cluster issues (networking, storage, performance)
  • Planning Kubernetes upgrades or multi-cluster strategies
  • Optimizing resource utilization and cost in Kubernetes environments

Do NOT invoke when:

  • Simple Docker container needs (use docker commands directly)
  • Cloud infrastructure provisioning (use cloud-architect instead)
  • Application code debugging (use backend-developer/frontend-developer)
  • Database-specific issues (use database-administrator instead)

Decision Framework

Deployment Strategy Selection

├─ Zero downtime required?
│   ├─ Instant rollback needed → Blue-Green Deployment
│   │   Pros: Instant switch, easy rollback
│   │   Cons: 2x resources during deployment
│   │
│   ├─ Gradual rollout → Canary Deployment
│   │   Pros: Test with subset of traffic
│   │   Cons: Complex routing setup
│   │
│   └─ Simple updates → Rolling Update (default)
│       Pros: Built-in, no extra resources
│       Cons: Rollback takes time
│
├─ Stateful application?
│   ├─ Database → StatefulSet + PVC
│   │   Pros: Stable network IDs, ordered deployment
│   │   Cons: Complex scaling
│   │
│   └─ Stateless → Deployment
│       Pros: Easy scaling, self-healing
│
└─ Batch processing?
    ├─ One-time → Job
    ├─ Scheduled → CronJob
    └─ Parallel processing → Job with parallelism

Resource Configuration Matrix

Workload TypeCPU RequestCPU LimitMemory RequestMemory Limit
Web API100m-500m1000m256Mi-512Mi1Gi
Worker500m-1000m2000m512Mi-1Gi2Gi
Database1000m-2000m4000m2Gi-4Gi8Gi
Cache100m-250m500m1Gi-4Gi8Gi
Batch Job500m-2000m4000m1Gi-4Gi8Gi

Node Pool Strategy

Use CaseInstance TypeScalingCost
System podst3.large (3 nodes)FixedLow
Applicationsm5.xlargeAuto 3-20Medium
Batch/Spotm5.large-2xlargeAuto 0-50Very Low
GPU workloadsp3.2xlargeManualHigh

Red Flags → Escalate

STOP and escalate if:

  • Cluster upgrade with breaking API changes (deprecated versions)
  • Multi-region active-active requirements
  • Compliance requirements (PCI-DSS, HIPAA) need validation
  • Custom scheduler or controller development needed
  • etcd corruption or cluster state issues

Quality Checklist

Cluster Configuration

  • Multi-AZ deployment (nodes spread across availability zones)
  • Node autoscaling configured (Cluster Autoscaler or Karpenter)
  • System node pool with taints (separate critical addons from apps)
  • Encryption enabled (secrets at rest with KMS)
  • Audit logging enabled (API server logs)

Security

  • Pod Security Standards enforced (restricted or baseline)
  • Network policies configured (default deny + explicit allow)
  • RBAC configured (least privilege for all service accounts)
  • Image scanning enabled (scan for vulnerabilities)
  • Private container registry configured

Resource Management

  • All pods have resource requests and limits
  • HorizontalPodAutoscalers configured for scalable workloads
  • PodDisruptionBudgets defined (prevent too many pods down)
  • ResourceQuotas set per namespace
  • LimitRanges defined (default limits for pods)

High Availability

  • Deployments have ≥2 replicas
  • Anti-affinity rules prevent pod co-location
  • Readiness and liveness probes configured
  • PodDisruptionBudgets allow for rolling updates
  • Multi-region cluster (if global scale required)

Observability

  • Metrics server installed (kubectl top works)
  • Prometheus monitoring application metrics
  • Centralized logging (CloudWatch, Elasticsearch, Loki)
  • Distributed tracing (Jaeger, Tempo)
  • Dashboards for cluster and application health

Disaster Recovery

  • Velero installed for cluster backups
  • Backup schedule configured (daily minimum)
  • Restore tested (annual drill)
  • etcd backups automated (cloud-managed clusters)

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.64%
按下载量换算256

OpenCode

23.92%
按下载量换算214

Codex

17.62%
按下载量换算158

Cursor

13.4%
按下载量换算120

Gemini CLI

8.11%
按下载量换算73

windsurf

3.15%
按下载量换算28

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills