🎯

managing-infra

🎯Skill

from alexei-led/claude-code-config

VibeIndex|
What it does

Guides infrastructure management by providing best practices and decision frameworks for Kubernetes, Terraform, Helm, Kustomize, and GitHub Actions workflows.

πŸ“¦

Part of

alexei-led/claude-code-config(15 items)

managing-infra

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add alexei-led/claude-code-config --skill managing-infra
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Infrastructure patterns for Kubernetes, Terraform, Helm, Kustomize, and GitHub Actions. Use when making K8s architectural decisions, choosing between Helm vs Kustomize, structuring Terraform modules, writing CI/CD workflows, or applying security best practices.

Overview

# Infrastructure Patterns

When to Use What

| Tool | Use For |

| ------------------ | --------------------------------------------------- |

| Raw K8s YAML | Simple deployments, one-off resources |

| Kustomize | Environment variations, overlays without templating |

| Helm | Complex apps, third-party charts, heavy templating |

| Terraform | Cloud resources, infrastructure lifecycle |

| GitHub Actions | CI/CD, automated testing, releases |

| Makefile | Build automation, self-documenting targets |

| Dockerfile | Container builds, multi-stage, multi-arch |

Quick Decisions

Kustomize when: Simple env differences, readable manifests, patching YAML

Helm when: Complex templating, third-party charts, release management

K8s Security Defaults

Every workload: non-root user, read-only filesystem, no privilege escalation, dropped capabilities, network policies.

GitHub Actions Patterns

  • CI workflow: Lint, test, compile on PRs (run on both x86 + ARM)
  • Release workflow: Multi-arch Docker build on tags (native ARM runners)
  • Pin actions by SHA, least-privilege permissions

References

  • [KUBERNETES.md](KUBERNETES.md) - K8s resource patterns
  • [TERRAFORM.md](TERRAFORM.md) - Terraform module patterns
  • [GITHUB-ACTIONS.md](GITHUB-ACTIONS.md) - CI/CD workflow patterns
  • [MAKEFILE.md](MAKEFILE.md) - Build automation patterns
  • [DOCKERFILE.md](DOCKERFILE.md) - Container build patterns
  • [templates/](templates/) - Ready-to-use templates

Commands

```bash

kubectl apply -k ./ # Apply kustomize

helm upgrade --install NAME . # Install/upgrade chart

terraform plan && terraform apply

```