skip to Main Content

Here, Actually we are running the Application in AKS Cluster and store the Application related data we are using the PV&PVC concept we need the backup of the data and has to store in Azure container so is it possible It need a suggestions and best approaches.

2

Answers


  1. You can backup and restore your Azure Kubernetes Service (AKS) cluster’s persistent volumes in a variety of methods. I would suggest you to use Velero so that you will not loss anything, in case of unintentional deletion or other possible failures.

    Please use this article Azure Kubernetes Services (AKS). Backup/Restore your AKS data with Velero by Andrej Trusevic follow accordingly.

    • Install velero
    • After successfully script execution Velero will be created in your cluster
    • Stateless application backup & restore once backup is completed you can be able to see your backup files in the storage account blob container

    For Reference:
    Secure and back up your data

    Login or Signup to reply.
  2. Yes , it is possible now for backup AKS cluster using native Azure Backup.

    Azure Backup now allows you to back up AKS clusters (cluster resources and persistent volumes attached to the cluster) using a backup extension, which must be installed in the cluster. Backup vault communicates with the cluster via this Backup Extension to perform backup and restore operations.

    See details:
    https://learn.microsoft.com/en-us/azure/backup/azure-kubernetes-service-cluster-restore

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search