Commit 0563832a authored by Zach Loafman's avatar Zach Loafman

Merge pull request #4627 from satnam6502/delete-logging-services

Delete cluster level logging services during kube down
parents 17feadf9 434b74da
......@@ -911,6 +911,10 @@ function teardown-logging-firewall {
detect-project
gcloud compute firewall-rules delete -q "${INSTANCE_PREFIX}-fluentd-elasticsearch-logging" --project "${PROJECT}" || true
# Also delete the logging services which will remove the associated forwarding rules (TCP load balancers).
local kubectl="${KUBE_ROOT}/cluster/kubectl.sh"
"${kubectl}" delete services elasticsearch-logging || true
"${kubectl}" delete services kibana-logging || true
}
# Perform preparations required to run e2e tests
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment