Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » Network | Monitoring » [AZURE] Azure AKS: How to Pull & Push Docker Images “Commvault” into Your Private Azure Container Registry
  • Dellupdate 1
    Fix for security vulnerabilities in the BIOS firmware for some Intel Processors Windows
  • Fix Windows Installer Service Could Not Be Accessed Error
    How to Fix the “Windows Installer Service Could Not Be Accessed” Error While Installing an Application Windows
  • Screenshot 2022 04 02 at 23.05.24
    How to apply Windows Updates with PowerShell Windows
  • HyperV 1
    An error occurred while attempting to connect to the server: Check if the Virtual Machine Management service is running or you are not authorized to connect to this server Virtualization
  • Security updated something did not go well as planned
    Something did not go well as planned: Windows Security update fails to install Windows
  • CMtrace
    How to install and debug logs with the CMTrace Tool Windows Server
  • Featured image SmartScreen
    Fix SmartScreen can’t be reached right now on Windows 10 and 11 Anti-Virus Solution
  • Featured image   Network Access Permission...
    Fix You Might Not Have Permission to Use This Network Resource Error Network | Monitoring

[AZURE] Azure AKS: How to Pull & Push Docker Images “Commvault” into Your Private Azure Container Registry

Posted on 28/12/202528/12/2025 Link State By Link State No Comments on [AZURE] Azure AKS: How to Pull & Push Docker Images “Commvault” into Your Private Azure Container Registry

This procedure is part of the prerequisites for performing a backup of a Kubernetes cluster using the Commvault.

The adoption of Azure Kubernetes Service (AKS) has become a standard approach for organizations seeking scalable, resilient, and cloud-native container orchestration on Microsoft Azure. Within this architecture, container image management plays a critical role—especially when dealing with enterprise-grade solutions such as Commvault, where security, governance, and operational control are mandatory requirements.

This guide is designed to walk you through the process of uploading a Commvault Docker image into a private Azure Container Registry (ACR) and making it available for deployment on an AKS cluster. Hosting images in a local ACR improves control over image lifecycle management, reduces external dependencies, and ensures tighter integration with Azure-native security and access controls.

Throughout this article, we will cover prerequisites, best practices, and the operational steps required to implement a reliable and secure image workflow. The content is targeted at system engineers, cloud engineers, and DevOps professionals who are integrating Commvault workloads into AKS environments and need a repeatable, enterprise-ready approach.

By the end of this guide, you will have a clear understanding of how to prepare your Azure Container Registry, import the Commvault Docker image, and securely consume it from your AKS cluster in a production-ready setup.

Upload the Docker image to your enterprise ACR (your ACR name)

Prerequisite for backup AKS cluster Azure with Commvault

System Requirements for Kubernetes

Install and start Docker Desktop

If you are working on Windows or macOS:

  • Install Docker Desktop → https://docs.docker.com/desktop/
  • Istallend on Windows WLS -> How to install WSL on Windows – TechDirectArchive

This installation is for Windows

image002-min

List and set the subscription where the AKS cluster resides

Use the Azure CLI to first list all available subscriptions and then set the correct one as the active context.

“Direct login to the ACR fails because we are not logged in with the correct user and the associated subscription.”

az account set --subscription "<SUBSCRIPTION_ID or SUBSCRIPTION_NAME>"
az account list --output table
az account show
image004-min

Login in Azure

image006-min
image008-min
image010-min

Select the subscription using its numeric ID

image012-min
image014-min

Prerequisites: Obtain the Login Server

az acr show --name YOUR-ACR-NAME --query loginServer --output tsv
image016-min

Preparation and Image Tag Upload (Push)

CLI exemple

sudo docker tag commvault/accessnode:11.sp25.latest enterpriseapplicationintegrationglt.azurecr.io/commvault/accessnode:11.sp25.latest

This is your local image

image018-min

it is your ACR login server

image020-min

it is the path and tag that the image will have in your container

image022-min

You can now logging in to Azure Container Registry (ACR)

After completing the authentication process, retry the login to your Azure Container Registry by running:

az acr login --name YOUR-ACR-NAME
image024-min

Check the Docker user – You can verify if Docker is logged in with

sudo docker info | grep -i username

Alternative to show login credentials: az acr credential

az acr credential show --name YOUR-ACR-NAME
image026-min

Or From GUI Azure Portal

image028-min

We can use manual Docker login with the service principal’s username and password:

sudo docker login YOUR-ACR-NAME.azurecr.io -u <username> -p <password>
image030-min

List image commvault needed

This is the list of images to be uploaded and installed on the ACR.”

accessnode

mediaagent

commserve

commandcenter

networkgateway

webserver

Execute the Image Pull

Here it is possible to check all versions of the Commvault backup system images that can be installed on the Azure AKS cluster Commvault | Docker Hub

sudo docker pull commvault/accessnode:11.sp25.latest
image032-min
sudo docker tag commvault/accessnode:11.42.25 YOUR-ACR-NAME.azurecr.io /commvault/accessnode: 11.42.25
sudo docker pull commvault/mediaagent:11.42.25
sudo docker tag commvault/mediaagent:11.42. 25 YOUR-ACR-NAME.azurecr.io/commvault/mediaagent:11.42.25
sudo docker pull commvault/commserve:11.42.25
sudo docker tag commvault/commserve:11.42.25 YOUR-ACR-NAME.azurecr.io.azurecr.io/commvault/commserve:11.42.25
sudo docker pull commvault/commandcenter:11.42.25
sudo docker tag commvault/commandcenter:11.42.25 YOUR-ACR-NAME.azurecr.io/commvault/commandcenter:11.42.25
sudo docker pull commvault/networkgateway:11.42.25
sudo docker tag commvault/networkgateway:11.42.25 YOUR-ACR-NAME.azurecr.io/commvault/networkgateway:11.42.25
sudo docker pull commvault/webserver:11.42.25
sudo docker tag commvault/webserver:11.42.25 enterpriseapplicationintegrationglt.azurecr.io/commvault/webserver:11.42.25

Execute the Image Push

sudo docker push YOUR-ACR-NAME.azurecr.io/commvault/accessnode:11.sp25.latest
image036-min
sudo docker push YOUR-ACR-NAME.azurecr.io/commvault/accessnode: 11.42.25
sudo docker push YOUR-ACR-NAME.azurecr.io/commvault/mediaagent:11.42.25
sudo docker push YOUR-ACR-NAME.azurecr.io/commvault/commserve:11.42.25
sudo docker push YOUR-ACR-NAME.azurecr.io/commvault/commandcenter:11.42.25
sudo docker push YOUR-ACR-NAME.azurecr.io/commvault/networkgateway:11.42.25
sudo docker push YOUR-ACR-NAME.azurecr.io/commvault/webserver:11.42.25

Verify the image in ACR
After the push, you can view the list of repositories

az acr repository list --name YOUR-ACR-NAME --output table
image038-min

View the available tags in the repositor

If everything went well, you will see 11.sp25.latest among the tags of the commvault/accessnode

az acr repository show-tags --name YOUR-ACR-NAME --repository commvault/accessnode --output table
image040-min

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Click to share on X (Opens in new window) X
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Tumblr (Opens in new window) Tumblr
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Pocket (Opens in new window) Pocket
  • Click to share on Mastodon (Opens in new window) Mastodon
  • Click to share on Bluesky (Opens in new window) Bluesky
  • Click to share on Threads (Opens in new window) Threads
  • Click to share on Nextdoor (Opens in new window) Nextdoor
Network | Monitoring

Post navigation

Previous Post: [AZURE] Security Service Edge (SSE) & Azure Active Directory (Azure AD) will be renamed Microsoft Entra ID.

Related Posts

  • troubleshooting Active Directory Replication
    How to troubleshoot Active Directory Replication issues Network | Monitoring
  • pst
    Outlook Data File: Fix PST Error – Exceeded Maximum Large Items Network | Monitoring
  • amazon ec2 multiple ips 1
    What to note before assigning Multiple IPs’ to an Instance AWS/Azure/OpenShift
  • image 3
    How to Migrate Your WordPress Site with WordPress Duplicator Network | Monitoring
  • Screenshot 2020 05 16 at 15.18.10
    AWS CLI Error: All commands return Unknown output type [None] Network | Monitoring
  • Azure Stack 1
    How to create a load balancer for Azure Stack Hub Network | Monitoring

More Related Articles

troubleshooting Active Directory Replication How to troubleshoot Active Directory Replication issues Network | Monitoring
pst Outlook Data File: Fix PST Error – Exceeded Maximum Large Items Network | Monitoring
amazon ec2 multiple ips 1 What to note before assigning Multiple IPs’ to an Instance AWS/Azure/OpenShift
image 3 How to Migrate Your WordPress Site with WordPress Duplicator Network | Monitoring
Screenshot 2020 05 16 at 15.18.10 AWS CLI Error: All commands return Unknown output type [None] Network | Monitoring
Azure Stack 1 How to create a load balancer for Azure Stack Hub Network | Monitoring

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a
 
  • Dellupdate 1
    Fix for security vulnerabilities in the BIOS firmware for some Intel Processors Windows
  • Fix Windows Installer Service Could Not Be Accessed Error
    How to Fix the “Windows Installer Service Could Not Be Accessed” Error While Installing an Application Windows
  • Screenshot 2022 04 02 at 23.05.24
    How to apply Windows Updates with PowerShell Windows
  • HyperV 1
    An error occurred while attempting to connect to the server: Check if the Virtual Machine Management service is running or you are not authorized to connect to this server Virtualization
  • Security updated something did not go well as planned
    Something did not go well as planned: Windows Security update fails to install Windows
  • CMtrace
    How to install and debug logs with the CMTrace Tool Windows Server
  • Featured image SmartScreen
    Fix SmartScreen can’t be reached right now on Windows 10 and 11 Anti-Virus Solution
  • Featured image   Network Access Permission...
    Fix You Might Not Have Permission to Use This Network Resource Error Network | Monitoring

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,841 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.