kubernetes部署-基于docker desktop
转载请注明出处即可
所使用的环境为macos
零、安装前准备工作
(1) 安装brew
brew
执行以下指令安装
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
切换国内mirror
cd "$(brew --repo)"
git remote set-url origin git://mirrors.ustc.edu.cn/brew.git
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin git://mirrors.ustc.edu.cn/homebrew-core.git
替换Homebrew Bottles源 对于bash用户
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
source ~/.bash_profile
对于zsh用户
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
最后执行
brew update
(2) 安装kubectl
brew install kubectl
建议给指令设置别名
echo 'alias k=kubectl' >> ~/.zshrc 或者 ~/.bash_profile
一、安装docker
点击此链接docker官网进行下载
安装后,配置registry mirror地址
Preferences -> Docker Engine
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
二、根据版本下载k8s需要的images
在关于中查看k8s的版本