Patch __consul_* to discover remote consul configuration dir

remotes/origin/matrix
Timothée Floure 5 years ago
parent 70200cd28f
commit f595664924
  1. 1
      cdist/conf/type/__consul_check/explorer/conf-dir
  2. 2
      cdist/conf/type/__consul_check/manifest
  3. 15
      cdist/conf/type/__consul_service/explorer/conf-dir
  4. 5
      cdist/conf/type/__consul_service/manifest
  5. 1
      cdist/conf/type/__consul_watch_checks/explorer/conf-dir
  6. 2
      cdist/conf/type/__consul_watch_checks/manifest
  7. 1
      cdist/conf/type/__consul_watch_event/explorer/conf-dir
  8. 2
      cdist/conf/type/__consul_watch_event/manifest
  9. 1
      cdist/conf/type/__consul_watch_key/explorer/conf-dir
  10. 2
      cdist/conf/type/__consul_watch_key/manifest
  11. 1
      cdist/conf/type/__consul_watch_keyprefix/explorer/conf-dir
  12. 2
      cdist/conf/type/__consul_watch_keyprefix/manifest
  13. 1
      cdist/conf/type/__consul_watch_nodes/explorer/conf-dir
  14. 2
      cdist/conf/type/__consul_watch_nodes/manifest
  15. 1
      cdist/conf/type/__consul_watch_service/explorer/conf-dir
  16. 2
      cdist/conf/type/__consul_watch_service/manifest
  17. 1
      cdist/conf/type/__consul_watch_services/explorer/conf-dir
  18. 2
      cdist/conf/type/__consul_watch_services/manifest

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -19,7 +19,7 @@
#
name="$(cat "$__object/parameter/name" 2>/dev/null || echo "$__object_id")"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="check_${name}.json"
state="$(cat "$__object/parameter/state")"

@ -0,0 +1,15 @@
# Determine the configuration directory used by consul.
check_dir () {
if [ -d "$1" ]; then
echo -n "$1"
exit
fi
}
check_dir '/etc/consul/conf.d'
check_dir '/etc/consul.d'
check_dir '/etc/consul'
echo 'Could not determine consul configuration dir. Exiting.' >&2
exit 1

@ -19,7 +19,7 @@
#
name="$(cat "$__object/parameter/name" 2>/dev/null || echo "$__object_id")"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="service_${name}.json"
state="$(cat "$__object/parameter/state")"
@ -45,7 +45,7 @@ printf ' "name": "%s"\n' "$name"
cd "$__object/parameter/"
for param in *; do
case "$param" in
state|name|check-interval) continue ;;
state|name|check-interval|conf-dir) continue ;;
check-script)
printf ' ,"check": {\n'
printf ' "script": "%s"\n' "$(cat "$__object/parameter/check-script")"
@ -86,7 +86,6 @@ echo " }"
# end json file
echo "}"
) | \
require="__directory${conf_dir}" \
__config_file "${conf_dir}/${conf_file}" \
--owner root --group consul --mode 640 \
--state "$state" \

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -20,7 +20,7 @@
cdist_type="${__type##*/}"
watch_type="${cdist_type##*_}"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="watch_${watch_type}_${__object_id}.json"
state="$(cat "$__object/parameter/state")"

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -20,7 +20,7 @@
cdist_type="${__type##*/}"
watch_type="${cdist_type##*_}"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="watch_${watch_type}_${__object_id}.json"
state="$(cat "$__object/parameter/state")"

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -20,7 +20,7 @@
cdist_type="${__type##*/}"
watch_type="${cdist_type##*_}"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="watch_${watch_type}_${__object_id}.json"
state="$(cat "$__object/parameter/state")"

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -20,7 +20,7 @@
cdist_type="${__type##*/}"
watch_type="${cdist_type##*_}"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="watch_${watch_type}_${__object_id}.json"
state="$(cat "$__object/parameter/state")"

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -20,7 +20,7 @@
cdist_type="${__type##*/}"
watch_type="${cdist_type##*_}"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="watch_${watch_type}_${__object_id}.json"
state="$(cat "$__object/parameter/state")"

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -20,7 +20,7 @@
cdist_type="${__type##*/}"
watch_type="${cdist_type##*_}"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="watch_${watch_type}_${__object_id}.json"
state="$(cat "$__object/parameter/state")"

@ -0,0 +1 @@
../../__consul_service/explorer/conf-dir

@ -20,7 +20,7 @@
cdist_type="${__type##*/}"
watch_type="${cdist_type##*_}"
conf_dir="/etc/consul/conf.d"
conf_dir=$(cat "$__object/explorer/conf-dir")
conf_file="watch_${watch_type}_${__object_id}.json"
state="$(cat "$__object/parameter/state")"

Loading…
Cancel
Save