mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 17:30:00 +00:00
Merge pull request #12890 from alexhersh/ubuntu-calico-update
Update ubuntu-calico guide
This commit is contained in:
commit
aeb450ccee
@ -35,7 +35,7 @@ Kubernetes Deployment On Bare-metal Ubuntu Nodes with Calico Networking
|
|||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
|
|
||||||
This document describes how to deploy Kubernetes on ubuntu bare metal nodes with Calico Networking plugin. See [projectcalico.org](http://projectcalico.org) for more information on what Calico is, and [the calicoctl github](https://github.com/Metaswitch/calico-docker) for more information on the command-line tool, `calicoctl`.
|
This document describes how to deploy Kubernetes on ubuntu bare metal nodes with Calico Networking plugin. See [projectcalico.org](http://projectcalico.org) for more information on what Calico is, and [the calicoctl github](https://github.com/projectcalico/calico-docker) for more information on the command-line tool, `calicoctl`.
|
||||||
|
|
||||||
This guide will set up a simple Kubernetes cluster with a master and two nodes. We will start the following processes with systemd:
|
This guide will set up a simple Kubernetes cluster with a master and two nodes. We will start the following processes with systemd:
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ sudo mv -f network-environment /etc
|
|||||||
|
|
||||||
```
|
```
|
||||||
# Get the Kubernetes Source
|
# Get the Kubernetes Source
|
||||||
wget https://github.com/GoogleCloudPlatform/kubernetes/releases/download/v0.20.2/kubernetes.tar.gz
|
wget https://github.com/kubernetes/kubernetes/releases/download/v1.0.3/kubernetes.tar.gz
|
||||||
|
|
||||||
# Untar it
|
# Untar it
|
||||||
tar -xf kubernetes.tar.gz
|
tar -xf kubernetes.tar.gz
|
||||||
@ -130,7 +130,7 @@ In order to allow the master to route to pods on our nodes, we will launch the c
|
|||||||
|
|
||||||
```
|
```
|
||||||
# Install the calicoctl binary, which will be used to launch calico
|
# Install the calicoctl binary, which will be used to launch calico
|
||||||
wget https://github.com/Metaswitch/calico-docker/releases/download/v0.5.1/calicoctl
|
wget https://github.com/projectcalico/calico-docker/releases/download/v0.5.5/calicoctl
|
||||||
chmod +x calicoctl
|
chmod +x calicoctl
|
||||||
sudo cp -f calicoctl /usr/bin
|
sudo cp -f calicoctl /usr/bin
|
||||||
|
|
||||||
@ -207,7 +207,7 @@ The Docker daemon must be started and told to use the already configured cbr0 in
|
|||||||
|
|
||||||
```
|
```
|
||||||
# Get the calicoctl binary
|
# Get the calicoctl binary
|
||||||
wget https://github.com/Metaswitch/calico-docker/releases/download/v0.5.1/calicoctl
|
wget https://github.com/projectcalico/calico-docker/releases/download/v0.5.5/calicoctl
|
||||||
chmod +x calicoctl
|
chmod +x calicoctl
|
||||||
sudo cp -f calicoctl /usr/bin
|
sudo cp -f calicoctl /usr/bin
|
||||||
|
|
||||||
@ -232,7 +232,7 @@ ETCD_AUTHORITY=<MASTER_IP>:4001 calicoctl pool add 192.168.0.0/16
|
|||||||
|
|
||||||
```
|
```
|
||||||
# Get the Kubernetes Source
|
# Get the Kubernetes Source
|
||||||
wget https://github.com/GoogleCloudPlatform/kubernetes/releases/download/v0.20.2/kubernetes.tar.gz
|
wget https://github.com/kubernetes/kubernetes/releases/download/v1.0.3/kubernetes.tar.gz
|
||||||
|
|
||||||
# Untar it
|
# Untar it
|
||||||
tar -xf kubernetes.tar.gz
|
tar -xf kubernetes.tar.gz
|
||||||
|
Loading…
Reference in New Issue
Block a user