Search⌘ K
AI Features

Destroying the Resources

Understand how to remove deployed applications and services in Kubernetes using Knative, handle external load balancers like Istio Ingress Gateway on EKS, and destroy clusters with Terraform commands efficiently.

We'll cover the following...

Delete the application

We’re finished with our quick overview of Knative, and all that’s left is to remove the application.

Shell
kubectl --namespace production delete \
--filename devops-toolkit.yaml

Since that’s the only app we’ve deployed to the production namespace, we might just as well eliminate it completely. ...