Commit 8e343cde authored by Edgar Lee's avatar Edgar Lee Committed by Brad Davidson

Expose rootless containerd socket directories for external access

Signed-off-by: 's avatarEdgar Lee <edgarhinshunlee@gmail.com> (cherry picked from commit 0ac4c6a0) Signed-off-by: 's avatarBrad Davidson <brad.davidson@rancher.com>
parent c3230881
......@@ -6,6 +6,7 @@ package rootless
import (
"fmt"
"os"
"os/user"
"path/filepath"
"strings"
......@@ -25,11 +26,17 @@ func setupMounts(stateDir string) error {
_ = os.RemoveAll(f)
}
runDir, err := resolveRunDir()
if err != nil {
return err
}
mountMap := [][]string{
{"/var/log", filepath.Join(stateDir, "logs")},
{"/var/lib/cni", filepath.Join(stateDir, "cni")},
{"/var/lib/kubelet", filepath.Join(stateDir, "kubelet")},
{"/etc/rancher", filepath.Join(stateDir, "etc", "rancher")},
{"/run/k3s/containerd", filepath.Join(runDir, "k3s", "containerd")},
}
for _, v := range mountMap {
......@@ -91,3 +98,15 @@ func setupMount(target, dir string) error {
logrus.Debug("Mounting ", dir, target, " none bind")
return unix.Mount(dir, target, "none", unix.MS_BIND, "")
}
func resolveRunDir() (string, error) {
runDir := os.Getenv("XDG_RUNTIME_DIR")
if runDir == "" {
u, err := user.Lookup(os.Getenv("USER"))
if err != nil {
return "", err
}
runDir = filepath.Join("/run/user", u.Uid)
}
return runDir, nil
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment