mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
29 lines
756 B
Bash
Executable File
29 lines
756 B
Bash
Executable File
#!/bin/sh
|
|
rm -rf /tmp/m1.data /tmp/m2.data /tmp/m3.data
|
|
|
|
goreman -f /certs/Procfile start &
|
|
|
|
# TODO: remove random sleeps
|
|
sleep 7s
|
|
|
|
ETCDCTL_API=3 ./etcdctl \
|
|
--cacert=/certs/ca.crt \
|
|
--cert=/certs/server.crt \
|
|
--key=/certs/server.key.insecure \
|
|
--endpoints=https://localhost:2379 \
|
|
endpoint health --cluster
|
|
|
|
ETCDCTL_API=3 ./etcdctl \
|
|
--cacert=/certs/ca.crt \
|
|
--cert=/certs/server.crt \
|
|
--key=/certs/server.key.insecure \
|
|
--endpoints=https://localhost:2379,https://localhost:22379,https://localhost:32379 \
|
|
put abc def
|
|
|
|
ETCDCTL_API=3 ./etcdctl \
|
|
--cacert=/certs/ca.crt \
|
|
--cert=/certs/server.crt \
|
|
--key=/certs/server.key.insecure \
|
|
--endpoints=https://localhost:2379,https://localhost:22379,https://localhost:32379 \
|
|
get abc
|