0

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.

Prakash Samy
  • 81
  • 1
  • 3
  • 15

1 Answers1

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
  • How did you update value and how are checking value? – slashpai Mar 26 '18 at 14:00
  • Also in what way it affects other services?can you ellaborate – slashpai Mar 26 '18 at 14:02