summaryrefslogtreecommitdiffstats
path: root/roles/etcd/files
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2016-10-31 10:26:08 -0400
committerScott Dodson <sdodson@redhat.com>2016-11-14 08:50:42 -0500
commit00d007565aff754cb282631f89de93c1c9cc0a46 (patch)
tree380dcdf0297bb19d444bccb6dea50332914dd467 /roles/etcd/files
parent98e4d9600bb193c772c3f03ac3b810798734c168 (diff)
downloadopenshift-00d007565aff754cb282631f89de93c1c9cc0a46.tar.gz
openshift-00d007565aff754cb282631f89de93c1c9cc0a46.tar.bz2
openshift-00d007565aff754cb282631f89de93c1c9cc0a46.tar.xz
openshift-00d007565aff754cb282631f89de93c1c9cc0a46.zip
Drop /etc/profile.d/etcdctl.sh
Includes bash functions for etcdctl2 and etcdctl3 which provide reasonable defaults for etcdctl functions on a host that's configured with openshift_etcd.
Diffstat (limited to 'roles/etcd/files')
-rw-r--r--roles/etcd/files/etcdctl.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/roles/etcd/files/etcdctl.sh b/roles/etcd/files/etcdctl.sh
new file mode 100644
index 000000000..0e324a8a9
--- /dev/null
+++ b/roles/etcd/files/etcdctl.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+# Sets up handy aliases for etcd, need etcdctl2 and etcdctl3 because
+# command flags are different between the two. Should work on stand
+# alone etcd hosts and master + etcd hosts too because we use the peer keys.
+etcdctl2() {
+ /usr/bin/etcdctl --cert-file /etc/etcd/peer.crt --key-file /etc/etcd/peer.key --ca-file /etc/etcd/ca.crt -C https://`hostname`:2379 ${@}
+}
+
+etcdctl3() {
+ ETCDCTL_API=3 /usr/bin/etcdctl --cert /etc/etcd/peer.crt --key /etc/etcd/peer.key --cacert /etc/etcd/ca.crt --endpoints https://`hostname`:2379 ${@}
+}