Azure (Microsoft) logo

Skill

kickstart-acr-integration

integrate Azure Container Registry with AKS

Covers Azure Containers Deployment

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:

ClassBackendUse case
managed-csiAzure Disk (LRS)General single-node RWO
managed-csi-premiumAzure Disk (Premium SSD)IOPS-sensitive workloads
azurefile-csiAzure Files (SMB)Shared RWX across nodes
azurefile-csi-premiumAzure 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 from Azure (Microsoft)

View publisher

© 2026 YourAI.tools. Every skill from an identity-verified publisher.

Independent catalog. Not affiliated with, endorsed by, or sponsored by Anthropic or any listed publisher. All trademarks belong to their respective owners.