I can initialise the Consul services at startup using the /consul/config directory. I would like to be able to initialise my application settings into the Consul kv store when I start the Consul container. Is this possible?
Possible to initialise Consul Key Value store at startup?
2k Views Asked by David Clarke At
2
I wanted a simple approach to set application settings in Consul for a microservice project. I'm sure there are a number of existing tools but I wanted something that was lightweight and suits my development process. So rather than try to work with some of @mgyongyosi's suggestions I wrote a quick dotnet console application to do the (not so) heavy lifting. Under the project root directory I've created a directory structure
Consul/kv
. The child directories under that path represent keys in the Consul KV store and ajson
file at a leaf represents the application settings. Note there is only expected to be a singlejson
file per leaf directory. The application uses the Consul.NET nuget package for communicating with Consul.