We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 617ce04 commit af5f877Copy full SHA for af5f877
nodeup/pkg/model/kubelet.go
@@ -244,7 +244,7 @@ func (b *KubeletBuilder) buildSystemdService() *nodetasks.Service {
244
// @check if we are using bootstrap tokens and file checker
245
if !b.IsMaster && b.UseBootstrapTokens() {
246
manifest.Set("Service", "ExecStartPre",
247
- fmt.Sprintf("/usr/bin/bash -c 'while [ ! -f %s ]; do sleep 5; done;'", b.KubeletBootstrapKubeconfig()))
+ fmt.Sprintf("/bin/bash -c 'while [ ! -f %s ]; do sleep 5; done;'", b.KubeletBootstrapKubeconfig()))
248
}
249
250
manifest.Set("Service", "ExecStart", kubeletCommand+" \"$DAEMON_ARGS\"")
0 commit comments