i want to manage configuration for selected linux servers from one application. there is zookeeper but it change the configuration for all servers
is there a solution to specify a group of servers to edit configuration to?
i want to manage configuration for selected linux servers from one application. there is zookeeper but it change the configuration for all servers
is there a solution to specify a group of servers to edit configuration to?
Utilize the salt grains to add a role like "zookeeper" on your hosts that you want to manage. Then when you need to update the config you can target like "salt -G 'roles:zookeeper' state.sls some.config".
Or if you can't match on that you can also target partial hostnames or if you set the app name as a grain you can target that.