From 24f9939187e10fa7443934358d8b99f88e17e5a1 Mon Sep 17 00:00:00 2001 From: SataQiu <1527062125@qq.com> Date: Mon, 12 Aug 2019 08:37:11 +0800 Subject: [PATCH] zh-trans: add docs/getting-started-guides/ubuntu.md (#15801) * zh-trans: add docs/getting-started-guides/ubuntu.md * Update content/zh/docs/getting-started-guides/ubuntu.md Co-Authored-By: LiuDui <1693291525@qq.com> --- .../zh/docs/getting-started-guides/ubuntu.md | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 content/zh/docs/getting-started-guides/ubuntu.md diff --git a/content/zh/docs/getting-started-guides/ubuntu.md b/content/zh/docs/getting-started-guides/ubuntu.md new file mode 100644 index 0000000000..ae93616dfc --- /dev/null +++ b/content/zh/docs/getting-started-guides/ubuntu.md @@ -0,0 +1,63 @@ +--- +title: 在 Ubuntu 上运行 Kubernetes +content_template: templates/concept +--- + + +{{% capture overview %}} + +有多种方法可以在公有云、私有云以及裸金属上运行基于 Ubuntu 的 Kubernetes 集群。 +{{% /capture %}} + +{{% capture body %}} + +## Kubernetes Charmed 发行版(CDK) + + +[CDK](https://www.ubuntu.com/cloud/kubernetes) 是 Kubernetes 的一个发行版,作为开源应用程序建模器 Juju 的一组 *charms*。 + + +CDK 是附带了上游二进制文件的 Kubernetes 最新发行版,采用了一种支持快速简单部署的打包格式。它支持各种公有云和私有云,包括 AWS,GCE,Azure,Joyent,OpenStack,VMware 以及 Bare Metaland 本地部署。 + + +请参阅[官方文档](https://www.ubuntu.com/kubernetes/docs)获取详细信息。 + + +## MicroK8s + + +[MicroK8s](https://microk8s.io) 是 Kubernetes 的最小安装,旨在在本地运行。 + +它可以使用以下命令安装在 Ubuntu(或任何支持 snap 的操作系统)上: + +```shell +snap install microk8s --classic +``` + + +[MicroK8s 网站](https://microk8s.io/docs)上提供了完整的文档。 + +{{% /capture %}}