<!-- Please see https://istio.io/help and if you are a user of Istio, please file issues in https://github.com/istio/issues/issues instead of here. Only confirmed, triaged and labelled issues should be filed here. Please add the correct labels and epics (and priority and milestones if you have that information) --> ``` samples/bookinfo/kube/cleanup.sh ``` The above script will not delete `virtualservices` and `gateways` due to it is still getting `routerules`. ``` for rule in $(istioctl get -n ${NAMESPACE} routerules | grep -v 'No resources found'); do istioctl delete -n ${NAMESPACE} routerule $rule; done ```