kublet: fix expansion of KUBELET_OPTS

In exec commands `${VAR}` always expands to a single word, making it
equivalent to `"${VAR}"` in shell.
This commit is contained in:
Michael Marineau 2015-08-13 16:02:10 -07:00
parent 73d0d6e455
commit e3a903e243
2 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ ExecStart=/usr/bin/kubelet \
--config=/etc/kubernetes/manifests \ --config=/etc/kubernetes/manifests \
--v=2 \ --v=2 \
--cadvisor-port=0 \ --cadvisor-port=0 \
${KUBELET_OPTS} $KUBELET_OPTS
Restart=on-failure Restart=on-failure
RestartSec=5 RestartSec=5