Add support for running GCI on the GCE cloud provider

This commit is contained in:
Andy Zheng
2016-05-04 13:33:13 -07:00
parent 01cf9869fc
commit a737e1eba1
14 changed files with 1313 additions and 19 deletions

View File

@@ -34,7 +34,7 @@ max_seconds=10
while true; do
if ! curl --insecure -m ${max_seconds} -f -s https://127.0.0.1:{{kubelet_port}}/healthz > /dev/null; then
echo "kubelet failed!"
curl --insecure -s http://127.0.0.1:{{kubelet_port}}/healthz
curl --insecure https://127.0.0.1:{{kubelet_port}}/healthz
exit 2
fi
sleep 10