2016-02-24 21:47:57 +00:00
---
2018-06-06 23:25:23 +00:00
title: CoreOS on AWS or GCE
reviewers:
- errordeveloper
2018-08-21 14:39:51 +00:00
content_template: templates/concept
2016-02-24 21:47:57 +00:00
---
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
{{% capture overview %}}
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
There are multiple guides on running Kubernetes with [CoreOS ](https://coreos.com/kubernetes/docs/latest/ ).
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
{{% /capture %}}
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
{{% capture body %}}
2016-03-06 17:55:12 +00:00
2018-08-21 14:39:51 +00:00
## Official CoreOS Guides
2016-03-06 17:55:12 +00:00
2018-08-21 14:39:51 +00:00
These guides are maintained by CoreOS and deploy Kubernetes the "CoreOS Way" with full TLS, the DNS add-on, and more. These guides pass Kubernetes conformance testing and we encourage you to [test this yourself ](https://coreos.com/kubernetes/docs/latest/conformance-tests.html ).
2016-03-06 17:55:12 +00:00
2018-08-21 14:39:51 +00:00
* [**AWS Multi-Node** ](https://coreos.com/kubernetes/docs/latest/kubernetes-on-aws.html )
2016-07-15 21:52:20 +00:00
2018-08-21 14:39:51 +00:00
Guide and CLI tool for setting up a multi-node cluster on AWS.
CloudFormation is used to set up a master and multiple workers in auto-scaling groups.
2016-07-15 21:52:20 +00:00
2018-08-21 14:39:51 +00:00
* [**Bare Metal Multi-Node** ](https://coreos.com/kubernetes/docs/latest/kubernetes-on-baremetal.html#automated-provisioning )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Guide and HTTP/API service for PXE booting and provisioning a multi-node cluster on bare metal.
[Ignition ](https://coreos.com/ignition/docs/latest/ ) is used to provision a master and multiple workers on the first boot from disk.
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
* [**Vagrant Multi-Node** ](https://coreos.com/kubernetes/docs/latest/kubernetes-on-vagrant.html )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Guide to setting up a multi-node cluster on Vagrant.
The deployer can independently configure the number of etcd nodes, master nodes, and worker nodes to bring up a fully HA control plane.
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
* [**Vagrant Single-Node** ](https://coreos.com/kubernetes/docs/latest/kubernetes-on-vagrant-single.html )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
The quickest way to set up a Kubernetes development environment locally.
As easy as `git clone` , `vagrant up` and configuring `kubectl` .
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
* [**Full Step by Step Guide** ](https://coreos.com/kubernetes/docs/latest/getting-started.html )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
A generic guide to setting up an HA cluster on any cloud or bare metal, with full TLS.
Repeat the master or worker steps to configure more machines of that role.
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
## Community Guides
2016-02-26 11:54:48 +00:00
These guides are maintained by community members, cover specific platforms and use cases, and experiment with different ways of configuring Kubernetes on CoreOS.
2018-08-21 14:39:51 +00:00
* [**Easy Multi-node Cluster on Google Compute Engine** ](https://github.com/rimusz/coreos-multi-node-k8s-gce/blob/master/README.md )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Scripted installation of a single master, multi-worker cluster on GCE.
Kubernetes components are managed by [fleet ](https://github.com/coreos/fleet ).
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
* [**Multi-node cluster using cloud-config and Weave on Vagrant** ](https://github.com/errordeveloper/weave-demos/blob/master/poseidon/README.md )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Configure a Vagrant-based cluster of 3 machines with networking provided by Weave.
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
* [**Multi-node cluster using cloud-config and Vagrant** ](https://github.com/pires/kubernetes-vagrant-coreos-cluster/blob/master/README.md )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Configure a single master, multi-worker cluster locally, running on your choice of hypervisor: VirtualBox, Parallels, or VMware
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
* [**Single-node cluster using a small macOS App** ](https://github.com/rimusz/kube-solo-osx/blob/master/README.md )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Guide to running a solo cluster (master + worker) controlled by an macOS menubar application.
Uses xhyve + CoreOS under the hood.
2016-03-06 17:55:12 +00:00
2018-08-21 14:39:51 +00:00
* [**Multi-node cluster with Vagrant and fleet units using a small macOS App** ](https://github.com/rimusz/coreos-osx-gui-kubernetes-cluster/blob/master/README.md )
2016-03-06 17:55:12 +00:00
2018-08-21 14:39:51 +00:00
Guide to running a single master, multi-worker cluster controlled by an macOS menubar application.
Uses Vagrant under the hood.
2016-03-06 17:55:12 +00:00
2018-08-21 14:39:51 +00:00
* [**Multi-node cluster using cloud-config, CoreOS and VMware ESXi** ](https://github.com/xavierbaude/VMware-coreos-multi-nodes-Kubernetes )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Configure a single master, single worker cluster on VMware ESXi.
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
* [**Single/Multi-node cluster using cloud-config, CoreOS and Foreman** ](https://github.com/johscheuer/theforeman-coreos-kubernetes )
2016-02-26 11:54:48 +00:00
2018-08-21 14:39:51 +00:00
Configure a standalone Kubernetes or a Kubernetes cluster with [Foreman ](https://theforeman.org ).
2016-06-15 07:43:00 +00:00
2016-05-22 22:52:49 +00:00
## Support Level
IaaS Provider | Config. Mgmt | OS | Networking | Docs | Conforms | Support Level
-------------------- | ------------ | ------ | ---------- | --------------------------------------------- | ---------| ----------------------------
2017-09-25 20:43:15 +00:00
GCE | CoreOS | CoreOS | flannel | [docs ](/docs/getting-started-guides/coreos ) | | Community ([@pires](https://github.com/pires))
Vagrant | CoreOS | CoreOS | flannel | [docs ](/docs/getting-started-guides/coreos ) | | Community ([@pires](https://github.com/pires), [@AntonioMeireles ](https://github.com/AntonioMeireles ))
2016-05-22 22:52:49 +00:00
2017-09-25 20:43:15 +00:00
For support level information on all solutions, see the [Table of solutions ](/docs/getting-started-guides/#table-of-solutions ) chart.
2018-08-21 14:39:51 +00:00
{{% /capture %}}