如何在 Ubuntu 20.04 LTS 上安装 MicroK8s

MicroK8s 是一个轻量级的上游 Kubernetes 分发包,可作为不可变容器运行。MicroK8s 遵循上游Kubernetes版本,专注于提供轻松的安装和管理体验。以下是如何开始运行您自己的集群。microk8s-logo

Ubuntu 20.04 LTS Focal Fossa 上安装 MicroK8s

步骤 1. 首先,通过apt在终端中运行以下命令确保所有系统包都是最新的。

sudo apt update
sudo apt upgrade

步骤 2. 启用捕捉。

默认情况下,Snap 安装在 Ubuntu 服务器上,但如果它没有运行,请运行以下命令先启动它:

sudo systemctl start snapd.socket

步骤 3. 在 Ubuntu 20.04 上安装 MicroK8s。

现在运行以下命令在你的 Ubuntu 系统上安装 MicroK8s:

sudo snap install microk8s --classic

此外,您可以使用以下标志选择特定版本:--channel

sudo snap install microk8s --classic --channel=1.22/stable

成功安装后,使用以下命令验证 MicroK8s 状态:

### show status ###
root@dlp:~# microk8s status

microk8s is running
addons:
ambassador: disabled
cilium: disabled
dashboard: disabled
dns: disabled
fluentd: disabled
gpu: disabled
helm: disabled
helm3: disabled
host-access: disabled
ingress: disabled
istio: disabled
jaeger: disabled
knative: disabled
kubeflow: enable
linkerd: disabled
metallb: disabled
metrics-server: disabled
multus: disabled
prometheus: disabled
rbac: disabled
registry: disabled
storage: disabled### show config ###
root@idroot.us:~# microk8s config

apiVersion: v1
clusters:
- cluster:
    certificate-authority-data: LS0tL...
    server: https://192.0.0.30:16443
  name: microk8s-cluster
contexts:
- context:
    cluster: microk8s-cluster
    user: admin
  name: microk8s
current-context: microk8s
kind: Config
preferences: {}
users:
- name: admin
  user:
    token: THhlZmeilanaxNW00eDR0ulfakk5V2Z5c0mariaxWkdxWT0K

root@idroot.us:~# microk8s kubectl get all

NAME                 TYPE        CLUSTER-IP     EXTERNAL-IP   PORT(S)   AGE
service/kubernetes   ClusterIP   192.168.77.21                443/TCP   3m47s

root@idroot.us:~# microk8s kubectl get nodes

NAME            STATUS   ROLES    AGE     VERSION
mey.idroot.us   Ready       4m10s   v1.18.6-1+64f5e461fe36a7### stop MicroK8s ###
root@idroot.us:~# microk8s stop
stop of [microk8s.daemon-apiserver microk8s.daemon-apiserver-kicker microk8s.da
Stopped.

root@idroot.us:~# microk8s status
microk8s is not running. Use microk8s inspect for a deeper inspection.

### start MicroK8s ###
root@dlp:~# microk8s start
Started.

感谢您使用本教程在 Ubuntu 20.04 LTS Focal Fossa 系统上安装 MicroK8s。如需其他帮助或有用信息,我们建议您查看MicroK8s 官方网站

原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun73932.html

(0)
打赏 微信扫一扫不于多少! 微信扫一扫不于多少! 支付宝扫一扫礼轻情意重 支付宝扫一扫礼轻情意重
上一篇 2021年10月10日 上午10:29
下一篇 2021年10月10日 上午10:36

相关推荐