欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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