azure-aks-governance

azure-aks-governance is a skill for Claude Code from AgenticPawan/FullStack-Pilot. It costs 87 tokens per session (1,286 once invoked), scanned A, original, MIT.

An AKS governance review for Azure Kubernetes Service, Microsoft’s managed system for running container clusters. It checks cluster and workload settings that affect security and resource use.

In plain words
What is it for?
Use it to review Pod Security Standards, container resource requests and limits, NetworkPolicy rules, and Azure Workload Identity settings in AKS deployments.
Why use it?
It finds missing protections that can let containers reach the host, consume too many resources, or communicate freely with other workloads. It applies to AKS rather than Azure Container Apps.

Skill for Claude Code

Written for Claude Code: when-to-use in frontmatter.

Part of the pilot-azure plugin — 15 skills, 3 agents shipped together

Good fit Use it to review Pod Security Standards, container resource requests and limits, NetworkPolicy rules, and Azure Workload Identity settings in AKS deployments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agenticpawan/fullstack-pilot/azure-aks-governance
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add AgenticPawan/FullStack-Pilot --skill azure-aks-governance
Clone the repo
git clone --depth 1 https://github.com/AgenticPawan/FullStack-Pilot

Made for: Claude Code.

Or install pilot-azure, the plugin that ships this one along with the rest of its 15 skills, 3 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for azure-aks-governance

README.md
[![agentmods](https://agentmods.dev/badge/skills/agenticpawan/fullstack-pilot/azure-aks-governance.svg)](https://agentmods.dev/skills/agenticpawan/fullstack-pilot/azure-aks-governance)
Your own site
<a href="https://agentmods.dev/skills/agenticpawan/fullstack-pilot/azure-aks-governance"><img src="https://agentmods.dev/badge/skills/agenticpawan/fullstack-pilot/azure-aks-governance.svg" alt="Measured on agentmods" height="20"></a>
Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,286 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00087 $0.01286
Opus 5 $0.00044 $0.00643
Sonnet 5 $0.00017 $0.00257
Haiku 4.5 $0.00009 $0.00129

Measured 7d ago against content hash d6d90f6e0e9c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

azure-aks-governance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/pilot-azure/skills/azure-aks-governance/SKILL.md · 166 lines

How it starts

The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Standard IDs

ID Severity What it checks
AKS-001 P0 Namespace/pod has no Pod Security Standards enforcement
AKS-002 P1 Container has no resource requests/limits configured
AKS-003 P0 No NetworkPolicy restricting pod-to-pod traffic
AKS-004 P0 Pod uses a client-secret/connection-string instead of Azure Workload Identity

This skill only applies when stack-detection identifies AKS as the compute target; shops on Azure Container Apps are governed by azure-bicep-patterns/azure-security-baseline instead — AKS introduces a distinct cluster-level governance surface those skills don't cover.


Check A — No Pod Security Standards enforcement (AKS-001)

Detection

Check the namespace manifest for Pod Security Admission labels (pod-security.kubernetes.io/enforce). Without at least the baseline standard, a pod spec can request privileged mode, host networking, or host path mounts — any of which gives a compromised container a path to the underlying node.

BAD — namespace with no Pod Security Standard set

apiVersion: v1
kind: Namespace
metadata:
  name: orders-prod
  # No pod-security.kubernetes.io/enforce label — any pod spec is admitted as-is.

GOOD — restricted standard enforced at the namespace level

apiVersion: v1
kind: Namespace
metadata:
  name: orders-prod
  labels:
    pod-security.kubernetes.io/enforce: restricted
    pod-security.kubernetes.io/audit: restricted

Check B — No resource requests/limits (AKS-002)

Detection

Grep pod/deployment specs for containers with no resources.requests/resources.limits. Without requests, the scheduler can't bin-pack nodes sensibly (noisy-neighbor risk); without limits, one runaway container can consume all node memory and get OOM-killed alongside every other pod on that node.

BAD — no resource requests/limits set

containers:
  - name: orders-api
    image: acr.azurecr.io/orders-api:latest
    # No resources block — this container can consume unbounded CPU/memory on its node.

Read the full file on GitHub · 166 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 166 lines · 87 tokens per session scan A d6d90f6e0e9c

Subscribe to this mod's changes

azure-aks-governance is a skill published in the GitHub repository AgenticPawan/FullStack-Pilot (2 stars, last pushed 1mo ago), licensed MIT. It adds 87 tokens to every session and 1,286 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

azure-prepare

Prepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Terraform), and Dockerfiles for the Azure Developer CLI (azd) workflow. USE ONLY when the user explicitly wants to use azd as the deployment tool, or the project already has an azure.yaml file. DO NOT USE FOR: non-azd…

microsoft/skills · 166 tokens

azure-cloud-migrate

Assess and migrate cross-cloud workloads to Azure with reports and code conversion. Supports Lambda→Functions, Beanstalk/Heroku/App Engine→App Service, Fargate/Kubernetes/Cloud Run/Spring Boot→Container Apps. WHEN: migrate Lambda to Functions, AWS to Azure, migrate Beanstalk, migrate Heroku, migrate App Engine, Cloud…

microsoft/skills · 106 tokens

ak-cloud-deploy

Deploy an Agent Kernel project to AWS, Azure, or GCP using Terraform modules, or to any Kubernetes cluster (on-prem, baremetal, EKS) using the official Helm chart. Supports serverless and containerized modes for all three clouds. AWS supports execution modes (restsync, restasync, async, stream), queue-based scalable…

yaalalabs/agent-kernel · 146 tokens

azure-prepare

WORKFLOW SKILL — Prepare Azure apps for deployment (Bicep/Terraform, azure.yaml, Dockerfiles). WHEN: "create app", "build web app", "create API", "deploy to Azure", "generate Bicep", "generate Terraform", "function app", "add authentication", "managed identity". DO NOT USE FOR: cross-cloud migration…

jonathan-vella/apex-accelerator · 101 tokens

azure-app-service-production-readiness

Review Azure App Service and Web Apps for production readiness across plan tier fit, slots, networking, private ingress, identities, secrets, scaling, diagnostics, resilience, backup, rollback, and operator readiness. Use when a team wants a real go/no-go decision instead of shallow reassurance.

VincentChuWaiChow/vanguard-frontier-agentic · 0 tokens

alibaba-ack-container-platform-operator

Operate ACK clusters (managed/dedicated/serverless), ACR container registries, ASM service mesh, and container workload placement. Guide ACK type selection, OIDC workload identity, and image vulnerability posture.

VincentChuWaiChow/vanguard-frontier-agentic · 50 tokens