Last active
December 11, 2016 12:43
-
-
Save garethahealy/c58b51da596acc8c306628652b0268bf to your computer and use it in GitHub Desktop.
etcd curl commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AllInOne port = 4001 | |
| HA = 2379 | |
| Dir = /var/lib/origin/openshift.local.config/master | |
| curl https://192.168.99.100:4001/version --cacert ./ca.crt --cert ./master.etcd-client.crt --key ./master.etcd-client.key | |
| curl https://192.168.99.100:4001/health --cacert ./ca.crt --cert ./master.etcd-client.crt --key ./master.etcd-client.key | |
| curl https://192.168.99.100:4001/metrics --cacert ./ca.crt --cert ./master.etcd-client.crt --key ./master.etcd-client.key | |
| etcdclt -C https://192.168.99.100:4001 --ca-file ./ca.crt --cert-file=./master.etcd-client.crt --key-file=./master.etcd-client.key |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment