Agent skill
azure-aks
Deploy and manage Azure Kubernetes Service clusters. Configure node pools, networking, and integrations. Use when running Kubernetes workloads on Azure.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/azure-aks-bagelhole-devops-security-agen
Metadata
Additional technical details for this skill
- author
- devops-skills
- version
- 1.0
SKILL.md
Azure Kubernetes Service
Deploy managed Kubernetes clusters on Azure.
Create Cluster
az aks create \
--resource-group mygroup \
--name myakscluster \
--node-count 3 \
--node-vm-size Standard_B2s \
--enable-managed-identity \
--generate-ssh-keys
# Get credentials
az aks get-credentials --resource-group mygroup --name myakscluster
Node Pools
az aks nodepool add \
--resource-group mygroup \
--cluster-name myakscluster \
--name gpupool \
--node-count 1 \
--node-vm-size Standard_NC6
Enable Add-ons
# Enable monitoring
az aks enable-addons \
--resource-group mygroup \
--name myakscluster \
--addons monitoring
# Enable Azure Policy
az aks enable-addons \
--resource-group mygroup \
--name myakscluster \
--addons azure-policy
Best Practices
- Use managed identity
- Enable Azure CNI for networking
- Implement pod identity
- Use node pools for workload isolation
- Enable cluster autoscaler
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?