If you no longer need your Gloo Gateway environment, you can uninstall the control plane and all gateway proxies. You can also optionally remove related components such as Prometheus and sample apps.

Uninstall Gloo Gateway

Remove the Gloo Gateway control plane and gateway proxies.

  1. Get all HTTP routes in your environment.

      kubectl get httproutes -A
      
  2. Remove each HTTP route.

      kubectl delete -n <namespace> httproute <httproute-name>
      
  3. Get all reference grants in your environment.

      kubectl get referencegrants -A
      
  4. Remove each reference grant.

      kubectl delete -n <namespace> referencegrant <referencegrant-name>
      
  5. Get all gateways in your environment that are configured by the gloo-gateway gateway class.

      kubectl get gateways -A | grep gloo-gateway
      
  6. Remove each gateway.

      kubectl delete -n <namespace> gateway <gateway-name>
      
  7. Uninstall Gloo Gateway.

  8. Remove the Kubernetes Gateway API CRDs.

      kubectl delete -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.0.0/standard-install.yaml
      

Uninstall optional components

Remove any optional components that you no longer need, such as sample apps.

  1. If you no longer need the Prometheus stack to monitor resources in your cluster, uninstall the release and delete the namespace.

      helm uninstall kube-prometheus-stack -n monitoring
    kubectl delete namespace monitoring
      
  2. Remove the httpbin sample app.

      kubectl delete namespace httpbin
      
  3. Remove the Petstore sample app.

      kubectl delete -f https://raw.githubusercontent.com/solo-io/gloo/v1.13.x/example/petstore/petstore.yaml