Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 418 Bytes

controller-node-etcd.md

File metadata and controls

34 lines (24 loc) · 418 Bytes

Bootstrapping etcd

node0

gcloud compute ssh node0

Download the etcd unit file:

sudo curl https://kuar.io/etcd.service \
  -o /etc/systemd/system/etcd.service

Review the etcd unit file:

cat /etc/systemd/system/etcd.service

Start the etcd service:

sudo systemctl daemon-reload
sudo systemctl enable etcd
sudo systemctl start etcd

Verify

sudo systemctl status etcd