Update etcd

This commit is contained in:
khs1994 2017-12-03 14:04:03 +08:00
parent fb85efc58d
commit 7b2ad5b30e

View File

@ -127,23 +127,17 @@ $ etcdctl del testkey
#### watch #### watch
监测一个键值的变化,一旦键值发生更新,就会输出最新的值并退出 监测一个键值的变化,一旦键值发生更新,就会输出最新的值。
例如,用户更新 testkey 键值为 Hello world。 例如,用户更新 testkey 键值为 Hello world。
```bash ```bash
$ etcdctl watch testkey $ etcdctl watch testkey
Hello world PUT
testkey
2
``` ```
支持的选项包括
--forever 一直监测,直到用户按 `CTRL+C` 退出
--after-index '0' 在指定 index 之前一直监测
--recursive 返回所有的键值和子键值
#### member #### member
通过 `list`、`add`、`update`、`remove` 命令列出、添加、更新、删除 etcd 实例到 etcd 集群中。 通过 `list`、`add`、`update`、`remove` 命令列出、添加、更新、删除 etcd 实例到 etcd 集群中。