Etcd Administration Tasks

Backups

Backups and restores of etcd on kops are covered in etcd_backup_restore_encryption.md

Direct Data Access

It's not typically necessary to view or manipulate the data inside of etcd directly with etcdctl, because all operations usually go through kubectl commands. However, it can be informative during troubleshooting, or just to understand kubernetes better. Here are the steps to accomplish that on kops.

  1. Connect to an etcd-manager pod
  1. CONTAINER=$(kubectl get pods -n kube-system | grep etcd-manager-main | head -n 1 | awk '{print $1}')
  2. kubectl exec -it -n kube-system $CONTAINER bash
  1. Determine which version of etcd is running
  1. DIRNAME=$(ps -ef | grep --color=never /opt/etcd | head -n 1 | awk '{print $8}' | xargs dirname)
  2. echo $DIRNAME
  1. Run etcdctl
  1. ETCDCTL_API=3 $DIRNAME/etcdctl --cacert=/rootfs/etc/kubernetes/pki/kube-apiserver/etcd-ca.crt --cert=/rootfs/etc/kubernetes/pki/kube-apiserver/etcd-client.crt --key=/rootfs/etc/kubernetes/pki/kube-apiserver/etcd-client.key --endpoints=https://127.0.0.1:4001 get --prefix / | tee output.txt

The contents of etcd are now in output.txt.

You may run any other etcdctl commands by replacing the "get —prefix /" with a different command.

The contents of the etcd dump are often garbled. See the next section for a better way to view the results.

Dump etcd contents in clear text

Openshift's etcdhelper is a good way of exporting the contents of etcd in a readable format. Here are the steps.

  1. SSH into a master node

You can view the IP addresses of the nodes

  1. kubectl get nodes -o wide

and then

  1. ssh admin@<IP-of-master-node>
  1. Install golang

in whatever manner you prefer. Here is one example.

  1. cd /usr/local
  2. sudo wget https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz
  3. sudo tar -xvf go1.13.3.linux-amd64.tar.gz
  4. cat <<EOT >> $HOME/.profile
  5. export GOROOT=/usr/local/go
  6. export GOPATH=\$HOME/go
  7. export PATH=\$GOPATH/bin:\$GOROOT/bin:\$PATH
  8. EOT
  9. source $HOME/.profile
  10. which go
  1. Install etcdhelper
  1. mkdir -p ~/go/src/github.com/
  2. cd ~/go/src/github.com/
  3. git clone https://github.com/openshift/origin openshift
  4. cd openshift/tools/etcdhelper
  5. go build .
  6. sudo cp etcdhelper /usr/local/bin/etcdhelper
  7. which etcdhelper
  1. Run etcdhelper
  1. sudo etcdhelper -key /etc/kubernetes/pki/kube-apiserver/etcd-client.key -cert /etc/kubernetes/pki/kube-apiserver/etcd-client.crt -cacert /etc/kubernetes/pki/kube-apiserver/etcd-ca.crt -endpoint https://127.0.0.1:4001 dump | tee output.txt

The output of the command is now available in output.txt

Other etcdhelper commands are possible, like "ls":

  1. sudo etcdhelper -key /etc/kubernetes/pki/kube-apiserver/etcd-client.key -cert /etc/kubernetes/pki/kube-apiserver/etcd-client.crt -cacert /etc/kubernetes/pki/kube-apiserver/etcd-ca.crt -endpoint https://127.0.0.1:4001 ls