Commit 2bb83511 authored by Adam Reese's avatar Adam Reese

fix(e2e): check to see if hyperkube is running

parent 0e6fc00d
......@@ -65,6 +65,10 @@ setup_iptables() {
start_kubernetes() {
echo "Getting the party going..."
if docker ps --filter "name=helm_kubelet" >/dev/null; then
error_exit "Kubernetes already running"
fi
docker run \
--name=helm_kubelet \
--volume=/:/rootfs:ro \
......
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