From 59e5e0776308e6cd6ee1832f2bb1a85252060986 Mon Sep 17 00:00:00 2001 From: Andy Zheng Date: Thu, 15 Oct 2015 11:13:57 -0700 Subject: [PATCH] Fix a bug in trusty node.yaml config The --log-level="\debug\" flag in DOCKER_OPTS may not be correctly interpreted in some cases. We turn on this flag only for testing clusters. In addition to fixing the docker flag, this change also removes the confusing numbers from the lines of separating upstart jobs. --- cluster/gce/trusty/node.yaml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/cluster/gce/trusty/node.yaml b/cluster/gce/trusty/node.yaml index e044ebcc791..2069d910deb 100644 --- a/cluster/gce/trusty/node.yaml +++ b/cluster/gce/trusty/node.yaml @@ -1,8 +1,8 @@ From nobody Tue Aug 11 10:13:54 2015 -Content-Type: multipart/mixed; boundary="===============6024533374511606659==" +Content-Type: multipart/mixed; boundary="====================================" MIME-Version: 1.0 ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -98,7 +98,7 @@ current-context: service-account-context EOF end script ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -127,7 +127,7 @@ script fi end script ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -158,7 +158,7 @@ script fi end script ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -226,7 +226,7 @@ script rm "/etc/saltbase/${salt_tar}" end script ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -270,7 +270,7 @@ end script # Wait for 10s to start kubelet again. post-stop exec sleep 10 ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -306,7 +306,7 @@ end script # Wait for 10s to start kube-proxy again. post-stop exec sleep 10 ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -327,7 +327,11 @@ script . /etc/kube-env # Assemble docker deamon options - echo "DOCKER_OPTS=\"-p /var/run/docker.pid ${EXTRA_DOCKER_OPTS} --log-level=\"debug\" --bridge cbr0 --iptables=false --ip-masq=false\"" > /etc/default/docker + DOCKER_OPTS="-p /var/run/docker.pid --bridge=cbr0 --iptables=false --ip-masq=false" + if [ "${TEST_CLUSTER:-}" = "true" ]; then + DOCKER_OPTS="${DOCKER_OPTS} --log-level=debug" + fi + echo "DOCKER_OPTS=\"${DOCKER_OPTS} ${EXTRA_DOCKER_OPTS}\"" > /etc/default/docker # Make sure the network interface cbr0 is created before restarting docker daemon while ! [ -L /sys/class/net/cbr0 ]; do echo "Sleep 1 second to wait for cbr0" @@ -339,7 +343,7 @@ script brctl delbr docker0 end script ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -371,7 +375,7 @@ script fi end script ---===============6024533374511606659== +--==================================== MIME-Version: 1.0 Content-Type: text/upstart-job; charset="us-ascii" Content-Transfer-Encoding: 7bit @@ -411,5 +415,5 @@ script done end script ---===============6024533374511606659==-- +--====================================--