You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-5Lines changed: 25 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,23 +2,43 @@
2
2
3
3
This guide will take you through the steps of deploying Kubernetes to bare metal or Openstack using docker.
4
4
5
-
## Setup on Bare Metal
5
+
## Run on Bare Metal or VM
6
+
Kubernetes will be launched on the machine, but no modification is done to the system. The cluster will not survive a reboot.
6
7
7
-
To setup master in your host
8
+
Login to master and paste the following command:
8
9
9
10
```
10
-
curl -s https://raw.githubusercontent.com/FujitsuEnablingSoftwareTechnologyGmbH/k8s-docker-provisioner/master/master.sh install | sudo sh
11
+
curl -s https://raw.githubusercontent.com/FujitsuEnablingSoftwareTechnologyGmbH/k8s-docker-provisioner/master/master.sh run | sudo sh
12
+
```
13
+
14
+
Login to worker and paste the following command:
15
+
16
+
```
17
+
curl -s https://raw.githubusercontent.com/FujitsuEnablingSoftwareTechnologyGmbH/k8s-docker-provisioner/master/worker.sh run | sudo MASTER_IP=<your-master-ip> sh
11
18
```
12
19
13
-
To setup node in your host
14
20
21
+
## Install on Bare Metal or VM
22
+
Kubernetes will be permanantly installed on the systems and automatically started after reboot.
23
+
24
+
Login to master and paste the following command:
25
+
26
+
```
27
+
curl -s https://raw.githubusercontent.com/FujitsuEnablingSoftwareTechnologyGmbH/k8s-docker-provisioner/master/master.sh install | sudo sh
28
+
```
29
+
30
+
Login to worker and paste the following command:
15
31
```
16
32
curl -s https://raw.githubusercontent.com/FujitsuEnablingSoftwareTechnologyGmbH/k8s-docker-provisioner/master/worker.sh install | sudo MASTER_IP=<your-master-ip> sh
0 commit comments