Skip to content

Files

Latest commit

a9a6993 · Feb 22, 2022

History

History
37 lines (26 loc) · 1.2 KB

open-service-mesh-uninstall-add-on.md

File metadata and controls

37 lines (26 loc) · 1.2 KB
title description services ms.topic ms.date ms.author
Uninstall the Open Service Mesh (OSM) add-on
Deploy Open Service Mesh on Azure Kubernetes Service (AKS) using Azure CLI
container-service
article
11/10/2021
pgibson

Uninstall the Open Service Mesh (OSM) add-on from your Azure Kubernetes Service (AKS) cluster

This article shows you how to uninstall the OMS add-on and related resources from your AKS cluster.

Disable the OSM add-on from your cluster

Disable the OSM add-on in your cluster using az aks disable-addon. For example:

az aks disable-addons \
  --resource-group myResourceGroup \
  --name myAKSCluster \
  --addons open-service-mesh

The above example removes the OSM add-on from the myAKSCluster in myResourceGroup.

Remove additional OSM resources

After the OSM add-on is disabled, use osm uninstall cluster-wide-resources to uninstall the remaining resource on the cluster. For example:

osm uninstall cluster-wide-resources

Important

You must remove these additional resources after you disable the OSM add-on. Leaving these resources on your cluster may cause issues if you enable the OSM add-on again in the future.