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
feat: install Kubernetes binaries and symlinks to /opt/bin
/usr/local/bin is generally read-only on immutable distributions, so
these binaries cannot be installed there.
The packages published to PMC and the system extensions built from those
install their binaries to /usr/bin. These were previously moved to
/usr/local/bin, but since this is no longer possible, symlinks are now
created in /opt/bin instead.
Symlinks are not used when installing from a tarball because the
versioned binaries (e.g. kubelet-*) are removed, leading to dangling
links.
The `install` command has been used to write these binaries because it
removes the existing file first (rather than following a symlink) and
takes care of making the new file executable.
0 commit comments