Meng-uninstal

Halaman ini menjelaskan cara meng-uninstal Anthos Service Mesh dan Istio open source.

Meng-uninstal Anthos Service Mesh

Jalankan salah satu perintah berikut untuk meng-uninstal komponen Anthos Service Mesh yang diinstal dengan profil konfigurasi ASM. Perintah ini menghapus namespace istio-system dan semua definisi resource kustom (CRD), termasuk CRD yang Anda terapkan. Jika Anda membuat CRD, pastikan Anda memiliki salinannya.

  1. Hapus bidang kontrol.

    • Jika Anda menginstal Anthos Service Mesh di GKE di VMware, GKE di AWS, Amazon Elastic Kubernetes Service, atau Microsoft Azure Kubernetes Service:
    1. Hapus bidang kontrol:

      istioctl manifest generate --set profile=asm-multicloud | kubectl delete --ignore-not-found=true -f -
      
    2. Hapus namespace istio-system:

      kubectl delete namespace istio-system
      
    • Jika Anda menginstal Anthos Service Mesh di Google Kubernetes Engine:

      istioctl manifest generate --set profile=asm-gcp | kubectl delete --ignore-not-found=true -f -
      

      Perintah ini akan otomatis menghapus namespace istio-system.

  2. Nonaktifkan injeksi otomatis file bantuan, jika diaktifkan:

    kubectl label namespace YOUR_NAMESPACE istio-injection=disabled