mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-15 17:28:58 +03:00
upgrade to Kubernetes v1.5.1 and ETCD v3.0.15
This commit is contained in:
committed by
Kelsey Hightower
parent
fa9972740b
commit
d53aca31a5
@@ -39,17 +39,17 @@ sudo cp ca.pem kubernetes-key.pem kubernetes.pem /etc/etcd/
|
||||
Download the official etcd release binaries from `coreos/etcd` GitHub project:
|
||||
|
||||
```
|
||||
wget https://github.com/coreos/etcd/releases/download/v3.0.10/etcd-v3.0.10-linux-amd64.tar.gz
|
||||
wget https://github.com/coreos/etcd/releases/download/v3.0.15/etcd-v3.0.15-linux-amd64.tar.gz
|
||||
```
|
||||
|
||||
Extract and install the `etcd` server binary and the `etcdctl` command line client:
|
||||
|
||||
```
|
||||
tar -xvf etcd-v3.0.10-linux-amd64.tar.gz
|
||||
tar -xvf etcd-v3.0.15-linux-amd64.tar.gz
|
||||
```
|
||||
|
||||
```
|
||||
sudo mv etcd-v3.0.10-linux-amd64/etcd* /usr/bin/
|
||||
sudo mv etcd-v3.0.15-linux-amd64/etcd* /usr/bin/
|
||||
```
|
||||
|
||||
All etcd data is stored under the etcd data directory. In a production cluster the data directory should be backed by a persistent disk. Create the etcd data directory:
|
||||
|
||||
Reference in New Issue
Block a user