Commit db904257 authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

Merge pull request #27599 from dchen1107/gci

Automatic merge from submit-queue Fix docker log level on GCI node. Fix #27584 cc/ @a-robinson
parents 808f3ecb 58684a56
......@@ -271,7 +271,9 @@ function assemble-docker-flags {
echo "Assemble docker command line flags"
local docker_opts="-p /var/run/docker.pid --iptables=false --ip-masq=false"
if [[ "${TEST_CLUSTER:-}" == "true" ]]; then
docker_opts+=" --debug"
docker_opts+=" --log-level=debug"
else
docker_opts+=" --log-level=warn"
fi
local use_net_plugin="true"
if [[ "${NETWORK_PROVIDER:-}" != "kubenet" && "${NETWORK_PROVIDER:-}" != "cni" ]]; then
......
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