forked from yifan-gu/tls_rotate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rotate_etcd.sh
executable file
·136 lines (101 loc) · 5.26 KB
/
rotate_etcd.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/bin/bash
set -eo pipefail
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
function usage() {
>&2 cat << EOF
Usage: ./rotate_etcd.sh
Set the following environment variables to run this script:
KUBECONFIG The path to the kubeconfig file of the cluster.
MASTER_IPS The list of public IPs of the master nodes, separated by space
ETCD_IPS The list of private IPs of the etcd nodes, separated by space
SSH_KEY The path to the ssh private key that allows to login the master nodes
EOF
exit 1
}
function restart_apiserver() {
echo "restart API Server"
${KUBECTL} delete pod -l k8s-app=kube-apiserver -n kube-system || true
sleep 5
running_pods=0
terminating_pods=0
until [[ $running_pods > 0 && $terminating_pods == 0 ]]; do
sleep 5
running_pods=$(${KUBECTL} get pods -l k8s-app=kube-apiserver -n kube-system 2>/dev/null | grep Running | wc -l || true)
terminating_pods=$(${KUBECTL} get pods -l k8s-app=kube-apiserver -n kube-system 2>/dev/null | grep Terminating | wc -l || true)
echo "running pods: $running_pods, terminating pods: $terminating_pods"
done
echo "API Server restarted"
}
KUBECTL=${DIR}/kubectl
if [ -z "$KUBECONFIG" ]; then
usage
fi
if [ -z "$MASTER_IPS" ]; then
usage
fi
if [ -z "$ETCD_IPS" ]; then
usage
fi
if [ -z "$SSH_KEY" ]; then
usage
fi
set -u
echo "update etcd CA"
${KUBECTL} patch -f ./generated/patches/etcd/etcd-bundle-ca.patch -p "$(cat ./generated/patches/etcd/etcd-bundle-ca.patch)"
sleep 10
restart_apiserver
master_ip_list=($MASTER_IPS)
master_ip=${master_ip_list[0]}
# Copy ./generated dir to one of the master node
echo "copy assets into master nodes"
scp -o StrictHostKeyChecking=no -i ${SSH_KEY} -r generated core@${master_ip}:
# Update certs on etcd nodes.
for ADDR in $ETCD_IPS; do
echo "update etcd CA on node $ADDR"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "scp -o StrictHostKeyChecking=no generated/tls/etcd/old_new_ca.crt core@$ADDR:/home/core/ca.crt"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo chown etcd:etcd /home/core/ca.crt"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo cp -r /etc/ssl/etcd /etc/ssl/etcd.bak"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo mv /home/core/ca.crt /etc/ssl/etcd/ca.crt"
echo "restart etcd on node $ADDR"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo systemctl restart etcd-member"
echo "etcd on node $ADDR restarted"
sleep 10
done
echo "update etcd client certs"
${KUBECTL} patch -f ./generated/patches/etcd/etcd-client-cert.patch -p "$(cat ./generated/patches/etcd/etcd-client-cert.patch)"
sleep 10
restart_apiserver
# Update peer certs on etcd nodes.
for ADDR in $ETCD_IPS; do
echo "update etcd peer certs on node $ADDR"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "scp -o StrictHostKeyChecking=no \
generated/tls/etcd/{peer.crt,peer.key,server.crt,server.key,client.crt,client.key} core@$ADDR:/home/core"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR \
sudo chown etcd:etcd /home/core/{peer.crt,peer.key,server.crt,server.key,client.crt,client.key}"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR \
sudo chmod 0400 /home/core/{peer.crt,peer.key,server.crt,server.key,client.crt,client.key}"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR \
sudo mv /home/core/{peer.crt,peer.key,server.crt,server.key,client.crt,client.key} /etc/ssl/etcd/"
echo "restart etcd on node $ADDR"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo systemctl restart etcd-member"
echo "etcd on node $ADDR restarted"
sleep 10
done
# Delete the old CA.
echo "delete old CA block"
echo " update etcd CA"
${KUBECTL} patch -f ./generated/patches/etcd/etcd-ca.patch -p "$(cat ./generated/patches/etcd/etcd-ca.patch)"
sleep 10
restart_apiserver
for ADDR in $ETCD_IPS; do
echo " update etcd CA on node $ADDR"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "scp -o StrictHostKeyChecking=no generated/tls/etcd/ca.crt core@$ADDR:/home/core/ca.crt"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo chown etcd:etcd /home/core/ca.crt"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo mv /home/core/ca.crt /etc/ssl/etcd/ca.crt"
echo " restart etcd on node $ADDR"
ssh -A -o StrictHostKeyChecking=no -i ${SSH_KEY} core@${master_ip} "ssh -o StrictHostKeyChecking=no core@$ADDR sudo systemctl restart etcd-member"
echo " etcd on node $ADDR restarted"
sleep 10
done
echo
echo "etcd CA and certs are succesfully rotated!"