一键导入
kubernetes-service-specification
Reference for Kubernetes Service types, networking, discovery, and troubleshooting.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reference for Kubernetes Service types, networking, discovery, and troubleshooting.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Anti-over-engineering guardrail that activates when an AI coding agent expands scope, adds abstractions, or changes files the user did not request.
Write JavaScript code in n8n Code nodes. Use when writing JavaScript in n8n, using $input/$json/$node syntax, making HTTP requests with $helpers, working with dates using DateTime, troubleshooting Code node errors, or choosing between Code node modes.
Complete n8n skill — workflow building, node configuration, JavaScript/Python code nodes, expression syntax, validation, MCP tools, credentials, administration, Docker deployment, backup/restore, internal API, and troubleshooting. Auto-triggers on any n8n task including workflow creation, node configuration, code nodes, expressions, validation errors, credential management, instance administration, n8n setup, n8n upgrade, n8n backup, and n8n API usage.
High-stakes decision-making system with 5 advisors, anonymous peer review, and chairman synthesis. Activates on "council this", "war room this", or "pressure-test this". Outputs HTML report + markdown transcript. Saves to disk and optionally to Obsidian. Uses full ecosystem: MCP data gathering, semantic memory, sequential thinking, domain-aware advisors.
Proven workflow architectural patterns from real n8n workflows. Use when building new workflows, designing workflow structure, choosing workflow patterns, planning workflow architecture, or asking about webhook processing, HTTP API integration, database operations, AI agent workflows, or scheduled tasks.
Write Python code in n8n Code nodes. Use when writing Python in n8n, using _input/_json/_node syntax, working with standard library, or need to understand Python limitations in n8n Code nodes.
| name | Kubernetes Service Specification |
| description | Reference for Kubernetes Service types, networking, discovery, and troubleshooting. |
Use this skill to design, review, explain, or troubleshoot Kubernetes Service resources. Keep outputs safe, scoped, and explicit about exposure, selectors, ports, traffic policy, and validation.
Use when the user asks about:
Gather or infer:
Use placeholders when details are missing.
| Type | Use For | Main Caution |
|---|---|---|
ClusterIP | Internal service-to-service traffic | Not reachable from outside the cluster |
NodePort | Development or direct node access | Limited port range and node failure exposure |
LoadBalancer | Public or private cloud load balancer | Restrict source ranges and verify provider annotations |
ExternalName | CNAME-style mapping to external DNS | DNS-only; no proxying or endpoint health |
Headless (clusterIP: None) | StatefulSet and direct pod discovery | Clients must handle pod endpoints |
See service-types.md for full examples and cloud annotations.
LoadBalancer or broad 0.0.0.0/0 source range without making that exposure explicit.kubectl apply, delete, production changes, and shared-cluster operations as approval-gated.Before presenting completion:
port, targetPort, protocol, and optional nodePort is valid for the use case.apiVersion: v1
kind: Service
metadata:
name: backend-service
spec:
type: ClusterIP
selector:
app: backend
ports:
- name: http
port: 80
targetPort: http
protocol: TCP