2016-11-30 21:59:07 +00:00
---
2017-01-11 01:55:43 +00:00
title: Kubernetes on Ubuntu
2018-05-05 16:00:51 +00:00
content_template: templates/concept
2016-11-30 21:59:07 +00:00
---
2018-05-05 16:00:51 +00:00
{{% capture overview %}}
2017-07-28 15:23:11 +00:00
There are multiple ways to run a Kubernetes cluster with Ubuntu. These pages explain how to deploy Kubernetes on Ubuntu on multiple public and private clouds, as well as bare metal.
2018-05-05 16:00:51 +00:00
{{% /capture %}}
2016-11-30 21:59:07 +00:00
2018-05-05 16:00:51 +00:00
{{% capture body %}}
2016-11-30 21:59:07 +00:00
## Official Ubuntu Guides
2017-01-20 23:38:46 +00:00
- [The Canonical Distribution of Kubernetes ](https://www.ubuntu.com/cloud/kubernetes )
2016-11-30 21:59:07 +00:00
2018-03-07 05:26:53 +00:00
The latest version of Kubernetes with upstream binaries. Supports AWS, GCE, Azure, Joyent, OpenStack, VMware, Bare Metal and localhost deployments.
2016-11-30 21:59:07 +00:00
2017-01-13 15:40:12 +00:00
### Quick Start
2017-05-02 11:59:24 +00:00
[conjure-up ](http://conjure-up.io/ ) provides the quickest way to deploy Kubernetes on Ubuntu for multiple clouds and bare metal. It provides a user-friendly UI that prompts you for cloud credentials and configuration options
2017-01-13 15:40:12 +00:00
2017-07-28 15:23:11 +00:00
Available for Ubuntu 16.04 and newer:
2017-01-13 15:40:12 +00:00
```
2017-02-28 16:23:10 +00:00
sudo snap install conjure-up --classic
2017-06-07 03:26:37 +00:00
# re-login may be required at that point if you just installed snap utility
2017-02-28 16:23:10 +00:00
conjure-up kubernetes
2017-01-13 15:40:12 +00:00
```
2017-05-02 11:59:24 +00:00
As well as Homebrew for macOS:
```
brew install conjure-up
conjure-up kubernetes
```
2017-01-13 15:40:12 +00:00
### Operational Guides
2017-07-28 15:23:11 +00:00
These are more in-depth guides for users choosing to run Kubernetes in production:
2016-11-30 21:59:07 +00:00
2017-09-25 20:43:15 +00:00
- [Installation ](/docs/getting-started-guides/ubuntu/installation/ )
- [Validation ](/docs/getting-started-guides/ubuntu/validation/ )
- [Backups ](/docs/getting-started-guides/ubuntu/backups/ )
- [Upgrades ](/docs/getting-started-guides/ubuntu/upgrades/ )
- [Scaling ](/docs/getting-started-guides/ubuntu/scaling/ )
- [Logging ](/docs/getting-started-guides/ubuntu/logging/ )
- [Monitoring ](/docs/getting-started-guides/ubuntu/monitoring/ )
- [Networking ](/docs/getting-started-guides/ubuntu/networking/ )
- [Security ](/docs/getting-started-guides/ubuntu/security/ )
- [Storage ](/docs/getting-started-guides/ubuntu/storage/ )
- [Troubleshooting ](/docs/getting-started-guides/ubuntu/troubleshooting/ )
- [Decommissioning ](/docs/getting-started-guides/ubuntu/decommissioning/ )
- [Operational Considerations ](/docs/getting-started-guides/ubuntu/operational-considerations/ )
- [Glossary ](/docs/getting-started-guides/ubuntu/glossary/ )
2019-02-13 10:06:56 +00:00
- [Authenticating with LDAP ](https://www.ubuntu.com/kubernetes/docs/ldap )
2018-03-05 02:27:51 +00:00
## Third-party Product Integrations
- [Rancher ](/docs/getting-started-guides/ubuntu/rancher/ )
2016-11-30 21:59:07 +00:00
## Developer Guides
2017-09-25 20:43:15 +00:00
- [Localhost using LXD ](/docs/getting-started-guides/ubuntu/local/ )
2016-11-30 21:59:07 +00:00
## Where to find us
2017-03-31 13:48:05 +00:00
We're normally following the following Slack channels:
2016-11-30 21:59:07 +00:00
2018-02-23 18:32:44 +00:00
- [kubernetes-users ](https://kubernetes.slack.com/messages/kubernetes-users/ )
- [kubernetes-novice ](https://kubernetes.slack.com/messages/kubernetes-novice/ )
2016-11-30 21:59:07 +00:00
- [sig-cluster-lifecycle ](https://kubernetes.slack.com/messages/sig-cluster-lifecycle/ )
- [sig-cluster-ops ](https://kubernetes.slack.com/messages/sig-cluster-ops/ )
2017-05-02 11:59:24 +00:00
- [sig-onprem ](https://kubernetes.slack.com/messages/sig-onprem/ )
2016-11-30 21:59:07 +00:00
2017-03-31 13:48:05 +00:00
and we monitor the Kubernetes mailing lists.
2018-05-05 16:00:51 +00:00
{{% /capture %}}