You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #16270 from smarterclayton/exec_kubelet
Automatic merge from submit-queue (batch tested with PRs 16480, 16486, 16270, 16128, 16489)
Direct exec() the kubelet instead of launching in proc
If only the kubelet is launched by the node process, execve(2) instead of launching in process. Requires some corrections to the upstream flags to support round tripping. Support `OPENSHIFT_ALLOW_UNSUPPORTED_KUBELET=<path>` to allow a kubelet binary that is not exactly equivalent (symlink or hardlink) to the current file. If the kubelet binary cannot be found, print a warning and continue with the in-proc flow (so we don't break older users without the kubelet symlink).
To start:
```
$ openshift start node --config=... --enable=kubelet --loglevel=3
<will log, then exec kubelet>
... kubelet logs
```
Networking can be run separately with:
```
$ openshift start network --config=...
```
Did a quick sanity test against this, didn't hit any obvious issues.
Builds off #16269
0 commit comments