install etcdctl to host when etcd deployment type is kubeadm (#6857)

* create a wrapper script with pki options
* supports all kubespray managed container engines

Co-authored-by: Hans Feldt <hafe@users.noreply.github.com>
This commit is contained in:
Hans Feldt
2020-11-04 09:20:04 +01:00
committed by GitHub
parent fc22453618
commit 544aa00c17
4 changed files with 77 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
# {{ ansible_managed }}
# example invocation: etcdctl.sh get --keys-only --from-key ""
etcdctl \
--cacert {{ kube_cert_dir }}/etcd/ca.crt \
--cert {{ kube_cert_dir }}/etcd/server.crt \
--key {{ kube_cert_dir }}/etcd/server.key "$@"