kubesphere3.1安装
添加hosts文件(每台都要)cat >> /etc/hosts << EOF> ip k8s-master> ip k8s-node1> ip k8s-node2> EOF保证机器之间可以互相访问关闭防火墙 (每台都要)systemctl stop firewalld && systemctl disable firewalld关闭
·
添加hosts文件(每台都要)
cat >> /etc/hosts << EOF
> ip k8s-master
> ip k8s-node1
> ip k8s-node2
> EOF
保证机器之间可以互相访问
关闭防火墙 (每台都要)
systemctl stop firewalld && systemctl disable firewalld
关闭Selinux (每台都要)
vi /etc/sysconfig/selinux
SELINUX=disabled
替换阿里源 (每台都要)
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
下载新的 CentOS-Base.repo 到 /etc/yum.repos.d/
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
yum makecache
yum update(可选)
安装常用软件 (每台都要)
yum -y install epel-release.noarch conntrack ipvsadm ipset jq sysstat curl iptables libseccomp vim lrzsz bash- completion
关闭swap分区 (每台都要)
swapoff -a
sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab
master:先执行以下命令以确保可以从正确的区域下载 KubeKey
export KKZONE=cn
执行以下命令下载 KubeKey
curl -sfL https://get-kk.kubesphere.io | VERSION=v1.1.0 sh -
备注:下载 KubeKey 后,如果您将其传输至访问 Googleapis 同样受限的新机器,请您在执行以下步骤之前务必再次执行
export
KKZONE=cn 命令。
为 kk 添加可执行权限
chmod +x kk
创建集群
./kk create config --with-kubesphere v3.1.0 --with-kubernetes v1.17.9
备注:安装 KubeSphere v3.1.0 的建议 Kubernetes 版本:v1.17.9,v1.18.8,v1.19.8 以及 v1.20.4。如果不指定 Kubernetes 版本,KubeKey 将默认安装 Kubernetes v1.19.8
编辑配置文件
使用配置文件创建集群
./kk create cluster -f config-sample.yaml
启用kubectl自动补全
yum -y install bash-completion
echo 'source <(kubectl completion bash)' >>~/.bashrc
kubectl completion bash >/etc/bash_completion.d/kubectl
更多推荐
已为社区贡献1条内容
所有评论(0)