Skip to content

Commit 998f5fd

Browse files
committed
Fix to pass quoted unsafe strings (with characters like *,<,5) correctly
to kubelet. Fix rhbz # 1587824.
1 parent 9d969d1 commit 998f5fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

images/node/scripts/openshift-node

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ if [[ -f /etc/origin/node/node-config.yaml ]]; then
1515
config=/etc/origin/node/node-config.yaml
1616
fi
1717
flags=$( /usr/bin/openshift-node-config "--config=${config}" )
18-
exec /usr/bin/hyperkube kubelet --v=${DEBUG_LOGLEVEL:-2} ${flags}
18+
eval "exec /usr/bin/hyperkube kubelet --v=${DEBUG_LOGLEVEL:-2} ${flags}"

0 commit comments

Comments
 (0)