
Skill
kickstart-acr-integration
integrate Azure Container Registry with AKS
Description
ACR integration for AKS Automatic. Teaches attaching an ACR, image reference conventions (digest pinning, no :latest), and pull-secret-free authentication via the managed identity.
SKILL.md
AKS Storage
Storage classes
AKS Automatic provides several built-in storage classes:
| Class | Backend | Use case |
|---|---|---|
managed-csi | Azure Disk (LRS) | General single-node RWO |
managed-csi-premium | Azure Disk (Premium SSD) | IOPS-sensitive workloads |
azurefile-csi | Azure Files (SMB) | Shared RWX across nodes |
azurefile-csi-premium | Azure Files (Premium) | High-throughput shared storage |
Persistent Volume Claims
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: my-data
spec:
accessModes:
- ReadWriteOnce
storageClassName: managed-csi-premium
resources:
requests:
storage: 32Gi
hostPath volumes
hostPath volumes are prohibited by AKS safeguards and the Restricted pod security standard. Use PVCs instead.
Backup
Use Azure Backup for AKS to protect persistent volumes. Enable in the cluster settings with a backup vault linked to the same resource group.
StatefulSet storage
For StatefulSets, use volumeClaimTemplates — Kubernetes creates one PVC per replica automatically:
volumeClaimTemplates:
- metadata:
name: data
spec:
accessModes: ["ReadWriteOnce"]
storageClassName: managed-csi-premium
resources:
requests:
storage: 10Gi
More skills from the vscode-aks-tools repository
View all 19 skillskickstart-bicep-authoring
author idiomatic Azure Bicep templates
Jul 12AzureBicepDeploymentInfrastructure as Codekickstart-cluster-status
monitor AKS cluster provisioning status
Jul 12AzureDeploymentKubernetesMonitoringkickstart-collaborator-voice
define agent voice and interaction patterns
Jul 12AgentsBrandingCommunicationskickstart-configure-infra
configure Azure infrastructure for AKS clusters
Jul 12AzureDeploymentInfrastructureKuberneteskickstart-deploy
deploy applications with Azure CLI and kubectl
Jul 12AzureCLIDeploymentKuberneteskickstart-design
propose target architecture on AKS
Jul 12ArchitectureAzureDeployment
More from Azure (Microsoft)
View publisherazure-arg-external-evaluation-policy-author
author and test Azure Resource Graph policies
azure-policy
Jul 12AzureComplianceGovernancePolicyazure-blueprints-migration
migrate Azure Blueprints to Template Specs
azure-blueprints
Jul 12AzureDeploymentInfrastructure as CodeMigrationapiview-feedback-resolution
resolve APIView feedback on Azure SDKs
azure-sdk-tools
Jul 12API DevelopmentAzureCode ReviewDocumentationazsdk-common-live-and-recorded-tests
deploy resources and run Azure SDK tests
azure-sdk-tools
Jul 12AzureDeploymentSDKTestingazsdk-common-prepare-release-plan
manage Azure SDK release plan work items
azure-sdk-tools
Jul 12AzureGitHubProject ManagementSDKazsdk-common-sdk-release
release Azure SDK packages
azure-sdk-tools
Jul 12AzureCI/CDDeploymentSDK