Rancher Webinar & Rodeo Events can be Found HERE
Rancher Academy can be Found HERE
See how to retrieve cluster.rkestate from controlplane node here: https://gist.github.com/superseb/e9f2628d1033cb20e54f6ee268683a7a
cat cluster.rkestate | jq -r '.currentState.certificatesBundle."kube-admin".config' > kube-admin-kubeconfig.yml
Setup etcdctl using the instructions at https://github.com/etcd-io/etcd/releases/tag/v3.4.13 (changed path to /usr/local/bin):
ETCD_VER=v3.4.13
# choose either URL
| #!/usr/bin/env bash | |
| if [ $# -ne 2 ]; then | |
| echo "Usage: $0 [filename] [etcd_version]" | |
| exit 1 | |
| fi | |
| FILENAME=$1 | |
| ETCD_VERSION=$2 | |
| TIMESTAMP="$(date +%s)" |