원클릭으로
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