Kubernetes 环境搭建 - MacOS

 2023-09-06 阅读 19 评论 0

摘要:准备工作 1、Mac 环境需求 Minikube 要求在 BIOS 中启用 VT-x / AMD-v 虚拟化, 要检查这是否在OSX / macOS上运行,请执行以下操作: sysctl -a | grep machdep.cpu.features | grep VMX 如果有输出,那你很棒棒! 2、【推荐】使用清华的 brew

准备工作

1、Mac 环境需求

Minikube 要求在 BIOS 中启用 VT-x / AMD-v 虚拟化, 要检查这是否在OSX / macOS上运行,请执行以下操作:

sysctl -a | grep machdep.cpu.features | grep VMX

如果有输出,那你很棒棒!

2、【推荐】使用清华的 brew 镜像源

cd "$(brew --repo)"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.gitcd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.gitbrew update

相关软件安装

  • kubectl
  • docker (for Mac)
  • minikube
  • virtualbox
brew update && brew install kubectl && brew cask install docker minikube virtualbox

校验软件版本信息

docker --version                # Docker version 18.03.1-ce, build 9ee9f40
docker-compose --version        # docker-compose version 1.21.1, build 5a3f1a3
docker-machine --version        # docker-machine version 0.14.0, build 89b8332
minikube version                # minikube version: v0.26.1
kubectl version --client        # Client Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.1", GitCommit:"d4ab47518836c750f9949b9e0d387f20fb92260b", GitTreeState:"clean", BuildDate:"2018-04-13T22:28:25Z", GoVersion:"go1.9.5", Compiler:"gc", Platform:"darwin/amd64"}      

开始

1、启动 kubernetes 集群

minikube start --bootstrapper=localkube

一会后,会有如下输出

Starting local Kubernetes v1.10.0 cluster...
Starting VM...
Downloading Minikube ISO150.53 MB / 150.53 MB [============================================] 100.00% 0s
Getting VM IP address...
WARNING: The localkube bootstrapper is now deprecated and support for it
will be removed in a future release. Please consider switching to the kubeadm bootstrapper, which
is intended to replace the localkube bootstrapper. To disable this message, run
[minikube config set ShowBootstrapperDeprecationNotification false]
Moving files into cluster...
Downloading localkube binary173.54 MB / 173.54 MB [============================================] 100.00% 0s0 B / 65 B [----------------------------------------------------------]   0.00%65 B / 65 B [======================================================] 100.00% 0sSetting up certs...
Connecting to cluster...
Setting up kubeconfig...
Starting cluster components...
Kubectl is now configured to use the cluster.
Loading cached images from config file.

恭喜!Minikube 为你启动了一个虚拟机,并在该虚拟机中运行了 Kubernetes 集群。

2、查看集群节点信息

➜  ~ kubectl get nodes
NAME       STATUS    ROLES     AGE       VERSION
minikube   Ready     <none>    15m       v1.10.0

常见问题及解决办法

1、kubectl 安装失败

➜ brew install kubectl
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 2 taps (caskroom/cask, homebrew/core).
==> Updated Formulae
pandoc-citeproc                                                   php                                                               php@7.0Error: Failed to link all completions, docs and manpages:Permission denied @ rb_file_s_symlink - (../../../Homebrew/completions/zsh/_brew, /usr/local/share/zsh/site-functions/_brew)
Warning: kubernetes-cli 1.10.1 is already installed, it's just not linked
You can use `brew link kubernetes-cli` to link this version.

解决办法

sudo chown -R $(whoami) /usr/local/share/
brew link kubernetes-cli


转载来源:https://www.jianshu.com/p/74957f08646b 
 

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/1/4386.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息