I am new for consul service config management, Here I want to change the exiting key/value store data during runtime. The Consul running services can automatically take an updated values without restarting service.
Asked
Active
Viewed 1,443 times
0
-
Are you asking how to update kv store runtime? Can you make your question more clear – slashpai Mar 23 '18 at 15:49
-
Yes need to change the Kv value at runtime. The updated values affected the all the service without restarting the cluster. – Prakash Samy Mar 25 '18 at 17:20
1 Answers
1
You can use http api to update KV store. You can use libraries supported by language of your choice to write code to update the kv store. For example if you like ruby you can use diplomat which is very pretty straight forward to use

slashpai
- 1,141
- 7
- 12
-
I got your point, My Actual problem is once i Updated kv value i got a existing kv value, once i restart a service consul i can able to got a new updated kv values. Here I used five working services if i restarted a consul its affects other services so i need to push the kv value to all service without restart consul – Prakash Samy Mar 26 '18 at 07:39
-
-