Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 636 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 636 Bytes

Kubernetes Resources

Deploy these resources to your current Kubernetes context by:

  1. Ensuring that your current working directory is this k8s directory

  2. Applying all manifests:

    kubectl apply -f .

    See the manifests in this directory for all of the resources that will be created.

To see the status of all resources created for this demo, run:

kubectl get all,cm,gw,se,vs,dr -l demo=istio-external-services -A

To clean up afterwards:

  1. Either

    kubectl delete -f .

    or

    kubectl delete all,cm,gw,se,vs,dr -l demo=istio-external-services -A