-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b5d57ef
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# kubernetes-coreos-cluster-hands-on | ||
[Kubernetes](https://github.com/GoogleCloudPlatform/kubernetes) | ||
cluster setup with [Vagrant](https://www.vagrantup.com) and | ||
[CoreOS](https://coreos.com). | ||
|
||
## Pre-requisites | ||
|
||
* [Vagrant](https://www.vagrantup.com) | ||
* [Virtualbox](https://www.virtualbox.org) | ||
|
||
## Master and Worker Cluster Setup | ||
|
||
### Download Scripts | ||
Master Cluster has only one node as master-01, and Worker Cluster has two nodes as node-01, node-02 | ||
``` | ||
$ ls | ||
continuse master worker | ||
$ cd master | ||
$ vagrant up | ||
........... | ||
$ cd ../worker | ||
$ vagrant up | ||
......... | ||
``` | ||
|
||
### Master CLuster login & Service Start | ||
``` | ||
$ cd master | ||
$ vagrant ssh master-01 | ||
On master-01 | ||
$ cd /continuse | ||
``` | ||
|
||
**KUBERNETES_VERSION** v0.16.0 | ||
|
||
### Usage | ||
|
||
If you want to test something exsamples, start with [Kubernetes examples] | ||
(https://github.com/GoogleCloudPlatform/kubernetes/blob/master/examples/). | ||
|