參考以下三篇文章沈堡,感謝抚笔!
http://www.reibang.com/p/4eb2171c0b5f
https://blog.csdn.net/shida_csdn/article/details/79456354
https://blog.csdn.net/shida_csdn/article/details/79474486
虛擬機(jī)內(nèi)存開(kāi)的大一點(diǎn)
一.安裝go
卸載原本安裝的go
sudo apt-get remove golang-go
sudo apt-get remove --auto-remove golang-go
下載go并解壓縮
到Go官網(wǎng)下載Go安包,下載地址https://golang.org/dl/迫卢,我的1.15.5版本
使用root登錄
然后解壓縮
tar -xzf go1.8.linux-amd64.tar.gz -C /usr/local
配置
新建goproject目錄貌踏,目錄里建src空文件夾
多用戶(hù)配置
vim /etc/profile # 文件末尾添加以下內(nèi)容
export GO111MODULE=on
export GOPROXY=https://goproxy.io,direct
export GOPATH=/home/ubuntu-master1/goproject #用于go的工作目錄
export GOROOT=/usr/local/go #安裝目錄
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
GOPROXY設(shè)置
https://www.goproxy.io/zh/
因?yàn)槲矣玫?.15版本所以用的上面的捕捂,如果你是1.13版本以下則替換為下面的寫(xiě)法,但我沒(méi)試過(guò)可不可以春霍。還是建議用新版
重新加載 profile 文件砸西,加載環(huán)境變量到內(nèi)存
source /etc/profile
查看go版本
go version
二.安裝Docker
卸載舊版本
sudo apt-get remove docker docker-engine docker-ce docker.io
設(shè)置倉(cāng)庫(kù)
#更新 apt 包索引
sudo apt-get update
#安裝 apt 依賴(lài)包,用于通過(guò)HTTPS來(lái)獲取倉(cāng)庫(kù):
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
#添加 Docker 的官方 GPG 密鑰:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
#設(shè)置穩(wěn)定版?zhèn)}庫(kù)
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
#安裝最新版本的 Docker Engine-Community 和 containerd
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
#安裝完成 檢驗(yàn)是否安裝成功
docker version
三.安裝helm
在helm的github倉(cāng)庫(kù)上下載二進(jìn)制可執(zhí)行文件(我的是helm-v3.4.1-linux-amd64.tar.gz):
https://github.com/helm/helm/releases
下載完可執(zhí)行文件helm后址儒,拷貝到文件夾/usr/local/bin下芹枷,執(zhí)行helm version, 如果看到版本信息,說(shuō)明helm的客戶(hù)端安裝成功莲趣。
四.安裝Rancher
執(zhí)行本地編譯
cd /home/ubuntu-master1/goproject/src/
git clone https://github.com/rancher/rancher.git
cd rancher
./scripts/build
此時(shí)可能會(huì)報(bào)錯(cuò)鸳慈,說(shuō)缺少一個(gè)k3s-images.txt,下載即可
原網(wǎng)址在https://github.com/k3s-io/k3s/releases
如果中途斷了喧伞,報(bào)錯(cuò)了走芋,多試幾次
查看編譯結(jié)果
編譯后的文件存放在 /home/ubuntu-master1/goproject/src/rancher/bin 目錄
可以看到bin目錄下有rancher 和agent
造鏡像
編輯 package目錄下的dockerfile 和dockerfile.agent
FROM ubuntu:18.04下添加這兩行 會(huì)快很多
RUN sed -i s@/archive.ubuntu.com/@/mirrors.aliyun.com/@g /etc/apt/sources.list
RUN apt-get clean
最后開(kāi)始執(zhí)行
#進(jìn)入scripts目錄下
./package
最后檢查docker images 出現(xiàn)了rancher/rancher ,rancher/agent和runtime的鏡像即為成功。
起Rancher
docker run --privileged -d --restart=unless-stopped -p 8090:80 -p 9443:443
-v /docker_volume/rancher_home/rancher:/var/lib/rancher
-v /docker_volume/rancher_home/auditlog:/var/log/auditlog
--name rancher rancher/rancher:5ebc96426 #換成你的tag號(hào)
加--privileged是因?yàn)樵趉8s之外起的rancher(現(xiàn)在還沒(méi)安k8s)潘鲫,如果安了就不需要了
https://blog.csdn.net/weixin_43141746/article/details/109517781