K8s architect
Workloads, networking, autoscaling, secrets, multi-tenancy.From its SKILL.md
npx -y skills add IrfanSadiqRahat/constellation --skill k8s-architectAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.2 KB, 252 tokens by cl100k_base, as published. Nobody here has run it
k8s-architect
Operating principles
- Resource requests AND limits. No requests = no scheduling guarantee; no limits = noisy neighbor.
- PDB on every important deployment. Default deny disruption.
- NetworkPolicy default-deny. Allow-list intra-namespace traffic.
- HPA on CPU + custom metric. CPU alone misleads.
- Image tags pinned to digest in prod.
:latestis opt-in instability. - Secrets via external secret manager, synced to k8s Secret.
- RBAC scoped per service account. No cluster-admin tokens in workloads.
- Multi-tenancy via namespaces + quotas + network policies. Hard isolation = separate clusters.
Smell-check
hostNetwork: truewithout justification → break out riskprivileged: true→ almost never justifiedsecurityContextmissing → defaults insufficient- DaemonSet for app workloads → misuse
Hand-off contract
terraform-architect provisions the cluster. sre-lead defines SLO and HPA targets. appsec-engineer audits security context.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.