在 lxc proxmox 上安装并创建 Kubernetes 集群

Install and create a Kubernetes cluster on lxc proxmox

我想知道谁试图在 LXC proxmox 中安装和创建 Kubernetes 集群。

我应该遵循哪些步骤才能实现这一点?

您可以使用以下文章来获得想要的结果: Run kubernetes inside LXC container or Run Kubernetes as Proxmox container

要总结以上文章,您应该执行以下步骤:

1) 为 docker 添加 overlay driver

echo overlay >> /etc/modules

2) 通过修改容器配置为容器添加更多权限

lxc.apparmor.profile: unconfined
lxc.cap.drop: 
lxc.cgroup.devices.allow: a
lxc.mount.auto: proc:rw sys:rw

3) 使用共享文件系统 /etc/rc.local

echo '#!/bin/sh -e
mount --make-rshared /' > /etc/rc.local

4) 使用 kubeadm 初始化集群