etcdctl exec-watch 命令使用介绍
程序员文章站
2022-07-13 22:34:27
...
etcdctl exec-watch 命令可以检测某个key的值的改变,并执行相应的命令,帮助文档显示的用法:
[[email protected] ~]# etcdctl exec-watch --help
USAGE:
etcdctl exec-watch [command options] <key> <command> [args...]
但实际上应该是:
etcdctl exec-watch [command options] <key> -- <command> [args...]
也就是 <command> 之前需要添加两个 -
例如:
[[email protected] ~]# etcdctl exec-watch /hello -- /bin/echo 'hello etcd'
hello etcd
hello etcd
上一篇: etcdctl v2 v3 使用指南