热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Minikube:搭建部署单机Kubernetes

课程分享:课程分享:DockerKubernetes(k8s)微服务容器化实践课程分享:Kubernetes(k8s)生产级实践指南从部署

课程分享:

  1. 课程分享:Docker+Kubernetes(k8s)微服务容器化实践
  2. 课程分享:Kubernetes(k8s)生产级实践指南 从部署到核心应用

  3. 课程分享:(极客时间)深入剖析Kubernetes



安装kubectl

Kubectl 是 Kubernetes 自带的命令行工具,可以用它直接操作 Kubernetes。

在线方式

macOS,执行:

# using brew https://brew.sh/
brew install kubernetes-cli

Linux,执行:

curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl&& chmod +x kubectl && sudo mv kubectl /usr/local/bin/

Windows,执行:

curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.15.0/bin/windows/amd64/kubectl.exe

离线方式

可以从kubernetes库上直接下载,方法如下:

  • step 1: 访问官方github网址:https://github.com/kubernetes/kubernetes/releases

  • step 2: 找到想使用的发布版本,在每个发布版本的最后一行有类似“CHANGELOG-1.10.md”这样的内容,点击超链进入;

  • step 3: 然后进入“Client Binaries”区域;

  • step 4: 选择和目标机器系统匹配的二进制包下载;

  • step 5: 解压缩,放入/usr/local/bin目录;


安装minikube

阿里云(推荐)

首先记住阿里云发布的minikube地址:https://github.com/AliyunContainerService/minikube

阿里云提供了最新的Minikube修改版的文件,可以直接下载使用

Mac OSX

curl -Lo minikube http://kubernetes.oss-cn-hangzhou.aliyuncs.com/minikube/releases/v1.3.1/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

Linux

curl -Lo minikube http://kubernetes.oss-cn-hangzhou.aliyuncs.com/minikube/releases/v1.3.1/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

Windows

下载 minikube-windows-amd64.exe 文件,并重命名为 minikube.exe

官网:


  • macOS 10.12 (Sierra)

    • 要求安装 hypervisor,比如 hyperkit (推荐)或 VirtualBox
    • 使用 brew : brew cask install minikube
    • 或者使用 curl: curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-amd64 && sudo install minikube-darwin-amd64 /usr/local/bin/minikube
  • Windows 10

    • 要求安装 hypervisor,比如 VirtualBox (推荐)或 HyperV
    • BIOS 中必须开启 VT-x/AMD-v virtualization
    • 使用 chocolatey choco install minikube
    • 或者通过链接下载: Download and run the installer
  • Linux

    • 要求安装 kvm2 driver (推荐)或 VirtualBox
    • BIOS 中必须开启 VT-x/AMD-v virtualization
    • 使用 curl: curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && sudo install minikube-linux-amd64 /usr/local/bin/minikube

问题1: VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path


CentOS7中安装 VirtualBox

Minikube使用了VirtualBox来启动kubenetes集群;在未安装VirtualBox minikube start时会报如下错误:

Unable to start VM: create: precreate: VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path

建议直接使用yum源方式安装VirtualBox ,配置正确的repo文件即可:

step 1:  vim /etc/yum.repos.d/virtualbox.repo
 
step 2:   # 将以下内容复制到文件内保存,之后使用yum命令即可安装VirtualBox的安装。
 
#具体内容如下:
[virtualbox]
name=Oracle Linux / RHEL / CentOS-$releasever / $basearch - VirtualBox
baseurl=http://download.virtualbox.org/virtualbox/rpm/el/$releasever/$basearch
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://www.virtualbox.org/download/oracle_vbox.asc
 
 
step 3:  #执行以下命令,完成VirtualBox 的安装
 
yum -y install VirtualBox-5.2


 

启动minikube

确认你的 minikube 至少是 v1.2.0:

$ minikube version
minikube version: v1.2.0

缺省Minikube使用VirtualBox驱动来创建Kubernetes本地环境

minikube start

问题2:Error: [VBOX_VTX_DISABLED] create: precreate: This computer doesn't have VT-X/AMD-v enabled

解决方式:

step 1:关闭虚拟机(注意:是关闭,不是挂起;否则为关机状态下,下图不能勾选!)

step 2 :设置虚拟化Intel VT-x/EPT

 

注意: 这里我们使用的是 VirtualBox,如果你用的其它,可能会需要另外的配置,请按照上面的链接查找。

[root@localhost ~]# minikube start
* minikube v1.3.1 on Centos 7.6.1810
! Please don't run minikube as root or with 'sudo' privileges. It isn't necessary with virtualbox driver.
* Using image repository registry.cn-hangzhou.aliyuncs.com/google_containers
* Tip: Use 'minikube start -p ' to create a new cluster, or 'minikube delete' to delete this one.
* Starting existing virtualbox VM for "minikube" ...
* Waiting for the host to be provisioned ...
* Preparing Kubernetes v1.15.2 on Docker 18.09.8 ...
* Downloading kubeadm v1.15.2
* Downloading kubelet v1.15.2
* Relaunching Kubernetes using kubeadm ... 
* Waiting for: apiserver proxy etcd scheduler controller dns
* Done! kubectl is now configured to use "minikube"


minikube start -p <集群名字>


默认集群名字是minikube

[root&#64;localhost ~]# minikube start -p K8sTest
* [K8sTest] minikube v1.3.1 on Centos 7.2.1511
! Please don&#39;t run minikube as root or with &#39;sudo&#39; privileges. It isn&#39;t necessary with virtualbox driver.
* Using image repository registry.cn-hangzhou.aliyuncs.com/google_containers
* Creating virtualbox VM (CPUs&#61;2, Memory&#61;2000MB, Disk&#61;20000MB) ...
* Preparing Kubernetes v1.15.2 on Docker 18.09.8 ...
* Pulling images ...
* Launching Kubernetes ...
* Waiting for: apiserver proxy etcd scheduler controller dns
* Done! kubectl is now configured to use "K8sTest"

通过cat ~/.kube/config 验证多了一个cluster集群

[root&#64;localhost ~]# cat ~/.kube/config
apiVersion: v1
clusters:
- cluster:certificate-authority: /root/.minikube/ca.crtserver: https://192.168.99.101:8443name: K8sTest
- cluster:certificate-authority: /root/.minikube/ca.crtserver: https://192.168.99.100:8443name: minikube
contexts:
- context:cluster: K8sTestuser: K8sTestname: K8sTest
- context:cluster: minikubeuser: minikubename: minikube
current-context: K8sTest
kind: Config
preferences: {}
users:
- name: K8sTestuser:client-certificate: /root/.minikube/client.crtclient-key: /root/.minikube/client.key
- name: minikubeuser:client-certificate: /root/.minikube/client.crtclient-key: /root/.minikube/client.key

验证

执行下面的命令&#xff1a;

$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
minikube Ready master 4m5s v1.15.0

若输出正常&#xff0c;则表示创建成功。

minikube ssh 验证k8s里的服务

但是&#xff0c;但是&#xff0c;minikube start并不代表&#xff0c;整个k8s集群搭建好了&#xff0c;因为k8s里的服务还需要起&#xff0c;比如API server&#xff0c;scheduler&#xff0c;kubelet等等&#xff0c;他们都是以容器的方式在后台启动。

那怎么判断成功了呢&#xff1f;

我们可以通过minikube ssh进到虚机里&#xff0c;然后看看是否有一些container运行起来了

minikube dashboard 


在本地运行minikube dashboard 会在本地弹出浏览器&#xff0c;就是Kubernetes的dashboard&#xff0c;那基本上恭喜您&#xff0c;安装成功了

 


问题3&#xff1a;error: failed to discover supported resources: Get https://192.168.99.100:8443/api: Service Unavailable 

$ minikube start Starting local Kubernetes v1.6.4 cluster...
... $ cat ~/.kube/config apiVersion: v1
clusters:
- cluster: certificate-authority: /root/.minikube/ca.crt server: https://192.168.99.100:8443 name: minikube
... $ kubectl run hello-minikube --image&#61;gcr.io/google_containers/echoserver:1.4 --port&#61;8000 error: failed to discover supported resources: Get https://192.168.99.100:8443/api: Service Unavailable

可以调试使用以下步骤&#xff1a;在端口8443

  1. kubectl会谈kube-apiserver做它的事。试试curl -k https://192.168.99.100:8443&#xff0c;看看是否有积极的回应。如果失败&#xff0c;则意味着kube-apiserver根本没有运行。您可以尝试重新启动虚拟机或重建minikube&#xff0c;以查看它是否第二次正常启动。

  2. 如果你觉得很勇敢&#xff0c;也可以直接调试虚拟机。在这种情况下&#xff0c;获取由minikube启动的虚拟机上的shell。运行docker ps | grep apiserver以检查kube-apiserver吊舱是否正在运行。也请尝试ps aux | grep apiserver以检查它是否本机运行。如果两者都没有显示结果&#xff0c;请使用journalctl -xef检查日志。


笔者&#xff1a;遇到这个问题&#xff0c;是重启vmware解决了&#xff0c;如果你有更好的解决方式&#xff0c;也说下&#xff0c;我补充修改


 


配置镜像加速器

为了拉取Docker Hub镜像&#xff0c;需要为 Docker daemon 配置镜像加速&#xff0c;参考阿里云镜像服务 或中科大镜像加速地址https://docker.mirrors.ustc.edu.cn&#xff0c;比如

minikube start --registry-mirror&#61;https://xxxxxx.mirror.aliyuncs.com

针对Docker客户端版本大于 1.10.0 的用户

您可以通过修改daemon配置文件/etc/docker/daemon.json来使用加速器

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-&#39;EOF&#39;
{"registry-mirrors": ["https://uy35zvn6.mirror.aliyuncs.com"]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker

Minikube 命令

[root&#64;localhost ~]# minikube help
Minikube is a CLI tool that provisions and manages single-node Kubernetes clusters optimized for
development workflows.Basic Commands:start Starts a local kubernetes clusterstatus Gets the status of a local kubernetes clusterstop Stops a running local kubernetes clusterdelete Deletes a local kubernetes clusterdashboard Access the kubernetes dashboard running within the minikube clusterImages Commands:docker-env Sets up docker env variables; similar to &#39;$(docker-machine env)&#39;cache Add or delete an image from the local cache.Configuration and Management Commands:addons Modify minikube&#39;s kubernetes addonsconfig Modify minikube configprofile Profile gets or sets the current minikube profileupdate-context Verify the IP address of the running cluster in kubeconfig.Networking and Connectivity Commands:service Gets the kubernetes URL(s) for the specified service in your local clustertunnel tunnel makes services of type LoadBalancer accessible on localhostAdvanced Commands:mount Mounts the specified directory into minikubessh Log into or run a command on a machine with SSH; similar to &#39;docker-machine ssh&#39;kubectl Run kubectlTroubleshooting Commands:ssh-key Retrieve the ssh identity key path of the specified clusterip Retrieves the IP address of the running clusterlogs Gets the logs of the running instance, used for debugging minikube, not user code.update-check Print current and latest version numberversion Print the version of minikubeOther Commands:completion Outputs minikube shell completion for the given shell (bash or zsh)Use "minikube --help" for more information about a given command.

minikube在线使用体验

https://kubernetes.io/docs/tutorials/kubernetes-basics/create-cluster/cluster-interactive/

参考链接&#xff1a;

https://yq.aliyun.com/articles/221687

https://github.com/caicloud/kube-ladder/edit/master/tutorials/lab1-installation.md

https://blog.csdn.net/java_zyq/article/details/88971407

https://stackoverrun.com/cn/q/12359425


推荐阅读
  • Kubernetes 持久化存储与数据卷详解
    本文深入探讨 Kubernetes 中持久化存储的使用场景、PV/PVC/StorageClass 的基本操作及其实现原理,旨在帮助读者理解如何高效管理容器化应用的数据持久化需求。 ... [详细]
  • Kubernetes与Docker之间的关系解析
    本文探讨了Kubernetes(简称k8s)与Docker之间的关系,旨在帮助读者理解这两种技术如何协同工作,以提高应用程序的部署效率和可扩展性。文章首先介绍了两者的基本概念,然后从虚拟化和部署的角度深入分析。 ... [详细]
  • PostgreSQL 最新动态 —— 2022年4月6日
    了解 PostgreSQL 社区的最新进展和技术分享 ... [详细]
  • 从 Windows 转向 Mac 的开发者指南:必备技巧与工具
    本文旨在帮助从 Windows 转向 Mac 的开发者们,提供一系列实用的技巧和工具,确保过渡过程顺畅。 ... [详细]
  • 探索PWA H5 Web App优化之路(Service Worker与Lighthouse的应用)
    本文探讨了如何通过Service Worker和Lighthouse工具来优化PWA H5 Web App,旨在提升用户体验,包括提高加载速度、增强离线访问能力等方面。 ... [详细]
  • 本文深入探讨了Kubernetes中Pod的基础概念及其分类,旨在帮助读者更好地理解和利用这一核心组件。通过详细的解析,我们将了解Pod如何作为最小的部署单元在Kubernetes集群中工作。 ... [详细]
  • ANSI最全介绍linux终端字体改变颜色等ANSI转义序列维基百科,自由的百科全书由于国内不能访问wiki而且国内关于ANSI的介绍都是简短的不能达到,不够完整所以转wiki到此 ... [详细]
  • 本文详细介绍了如何利用go-zero框架从需求分析到最终部署至Kubernetes的全过程,特别聚焦于微服务架构中的网关设计与实现。项目采用了go-zero及其生态组件,涵盖了从API设计到RPC调用,再到生产环境下的监控与维护等多方面内容。 ... [详细]
  • 重新审视Kubernetes的必要性
    近期,我注意到不少人误以为我是Kubernetes的推广者。实际上,我只是分享了一些适合用Kubernetes解决的案例。本文旨在探讨Kubernetes的适用场景,并提供一些替代方案。 ... [详细]
  • 本文详细介绍了Python编程语言的学习路径,涵盖基础语法、常用组件、开发工具、数据库管理、Web服务开发、大数据分析、人工智能、爬虫开发及办公自动化等多个方向。通过系统化的学习计划,帮助初学者快速掌握Python的核心技能。 ... [详细]
  • 深入解析Java枚举及其高级特性
    本文详细介绍了Java枚举的概念、语法、使用规则和应用场景,并探讨了其在实际编程中的高级应用。所有相关内容已收录于GitHub仓库[JavaLearningmanual](https://github.com/Ziphtracks/JavaLearningmanual),欢迎Star并持续关注。 ... [详细]
  • 本文详细介绍了如何使用Docker运行最简单的镜像,并创建第一个容器。通过具体的操作步骤和命令解释,帮助初学者快速上手Docker。完整课程请点击:Docker入门教程。 ... [详细]
  • 本文详细介绍了如何在 Android 中使用值动画(ValueAnimator)来动态调整 ImageView 的高度,并探讨了相关的关键属性和方法,包括图片填充后的高度、原始图片高度、动画变化因子以及布局重置等。 ... [详细]
  • 深入探讨配置文件的管理与优化
    尽管配置文件的重要性不言而喻,但其管理和安全性问题却常被忽视。本文将详细讨论配置文件的不同管理策略及其优缺点。 ... [详细]
  • VS Code 中 .vscode 文件夹配置详解
    本文介绍了 VS Code 中 .vscode 文件夹下的配置文件及其作用,包括常用的预定义变量和三个关键配置文件:launch.json、tasks.json 和 c_cpp_properties.json。 ... [详细]
author-avatar
Coco李可儿
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有