QuickStart Guides

Deploying Litmus UNS on Microsoft Azure Kubernetes Services

3min

You can deploy Litmus UNS on Microsoft Azure Kubernetes Services.

Before You Begin

  • Ensure you have a running AKS Kubernetes cluster.

Installation Steps

To deploy Litmus UNS on Microsoft Azure Kubernetes Services:

  1. Download the Litmus UNS Quay.io secret file litmusautomation-uns-centralportal-secret.yml from Litmus Central Portal.
  2. Connect to the k8s cluster instance on AKS via Cloud Shell or other methods. Then upload the above yml file to the working directory.

    Cloud Shell
    Cloud Shell
    
  3. Create the UNS namespace by running kubectl create namespace uns command in bash.
  4. Create the UNS secret by running kubectl create -f litmusautomation-uns-centralportal-secret.yml --namespace=uns command in bash.
  5. Run helm command for installation with helm install uns oci://quay.io/litmusautomation/charts/litmus-uns --wait --namespace uns --create-namespace --set "imagePullSecrets[0].name=litmusautomation-uns-centralportal-pull-secret" 
  6. When the installation process is completed, the UNS application should be running.

The webui can be reached by the External-IP on the Load Balancer service. This can be retrieved by calling the command below:

Bash