整体目标
纯新手记录自己搭建过程.
- mac单机搭建k8s 测试环境
- k8s使用demo
- spring boot 在k8s 使用
- istio 微服务
mac 搭建k8s
install docker
官方教程
基本是下载,点点点ok
install brew
brew mac 包管理(类似于yum,apt)
命令行执行
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
(可跳过) brew update 过慢
brew 本质上也是git pull ,所以当源是一些国外源,由于某些不可描述的原因,所以会很慢,甚至可能访问不了.
所以我们要换成git的源.原理是 brew update --verbose 观察卡到哪里,cd到那个目录,替换(git remote set-url origin )
# 替换brew.git:
cd "$(brew --repo)"
git remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
# 替换homebrew-core.git:
cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
# 替换homebrew-cask.git:
cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask
git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
# 替换homebrew-bottles:
echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc
source ~/.zshrc
install minikube
minikube 和 docker desktop
mac单机安装k8s,目前分两种方案.一、docker desktop上Kubernetes集群.二、minikube.
本人选择minikube.
一、docker desktop,自动从k8s拉去镜像,解决办法是自己拉去镜像,然后docker tag 修改成k8s的镜像.所以docker desktop每次升级,必须手动拉去镜像,就该tag.比较麻烦.
二、docker desktop 安装的集群需要自己配置插件,minikube自带一些插件,后期可控.
三、minikube可以跨操作系统安装,相对来说泛用.
安装
mac 虚拟化
sysctl -a | grep -E --color 'machdep.cpu.features|VMX'
底层采用 hyperkit 虚拟机(也可以用其他 比如 VirtualBox、VMware Fusion)
brew install hyperkit
正式install
brew cask install minikube
# 命令查看
minikube help
启动
# minikube config 用户配置一些环境
# minikube config --help 查看帮助
# minikube config view 查看所有配置
# minikube config get/set k v 获取配置/设置配置
minikube config set dashboard true
# 指定驱动 如果用 其他修改
minikube config set vm-driver hyperkit
minikube start --logtostderr --v=3 --registry-mirror=https://registry.docker-cn.com --registry-mirror=https://8eoqixdq.mirror.aliyuncs.com --registry-mirror=https://dockerhub.azk8s.cn --insecure-registry=local.registry:5000 --image-repository=registry.cn-hangzhou.aliyuncs.com/google_containers --vm-driver="hyperkit" --memory=4096
# v=3 配置日历(可选)
# registry-mirror 镜像加速地址 (必须否则会很慢)
# https://registry.docker-cn.com
# https://8eoqixdq.mirror.aliyuncs.com
# https://dockerhub.azk8s.cn
# insecure-registry 本地镜像仓储(可选)
# image-repository(必须带,重点,重点)
# registry.cn-hangzhou.aliyuncs.com/google_containers
minikube status
# 查询状态
minikube start/stop/delete
# k8s 集群启动 停止 删除
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。