2、进入Ubuntu系统,如图。
3、按下快捷键ctrl+alt+t打开控制台。
4、输入“sudo passwd root”。
5、回车之后输入用户登录系统的密码。
6、输入su的密码并回车,再次输入su的密码,然后回车。
7、看到如图所示就说明设置成功了,这样就完成了。
hostnamectl set-hostname master
hostnamectl set-hostname node1
hostnamectl set-hostname node2
关闭防火墙: systemctl disable firewalld
关闭selinux: sed -i 's/enforcing/disabled/' /etc/selinux/config (临时关闭 setenforce 0)
关闭swap: sed -ri 's/.*swap.*/#&/' /etc/fstab (临时关闭swapoff -a)
cat >/etc/sysctl.d/k8s.conf <<EOF
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
EOF
yum install ntpdate -y
ntpdate time.windows.com
wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo
yum -y install docker-ce-18.06.1.ce-3.el7
systemctl enable docker &&systemctl start docker
如果安装docker失败,建议更换源
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum install -y socat conntrack ebtables ipset
wget https://github.com/kubesphere/kubekey/releases/download/v1.2.0-alpha.2/kubekey-v1.2.0-alpha.2-linux-amd64.tar.gz
tar -zxvf kubekey-v1.2.0-alpha.2-linux-amd64.tar.gz
mv kk /usr/local/bin/
查看支持的版本:kk version --show-supported-k8s
./kk create config --with-kubernetes v1.20.4 --with-kubesphere v3.1.1
kk create cluster -f config-sample.yaml
访问日志打印的地址,输入用户名密码
安装完成,最好设置开机启动 systemctl enable kubelet
kk add nodes -f config-sample.yaml
kk delete node <nodeName>-f config-sample.yaml
kk delete cluster
kk delete cluster [-f config-sample.yaml]
kk upgrade [--with-kubernetes version] [--with-kubesphere version]
kk upgrade [--with-kubernetes version] [--with-kubesphere version] [(-f | --file) path]
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)