Skip to content

Commit

Permalink
minor: correct action
Browse files Browse the repository at this point in the history
  • Loading branch information
ntk148v committed Nov 13, 2024
1 parent 96102be commit 42ef0c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/ansitheus
Original file line number Diff line number Diff line change
Expand Up @@ -135,25 +135,25 @@ done
case "$1" in

deploy)
ACTION="Deploying ansitheus containers with docker-compose"
ACTION="Deploying Prometheus containers using Ansible"
EXTRA_OPTS="${EXTRA_OPTS} -e ansitheus_action=deploy"
EXTRA_OPTS="${EXTRA_OPTS} -e skip_gather_fact=${SKIP_GATHER_FACT}"
;;

pull)
ACTION="Pull all images without running containers"
ACTION="Pulling all images without running containers"
EXTRA_OPTS="${EXTRA_OPTS} -e ansitheus_action=pull"
EXTRA_OPTS="${EXTRA_OPTS} -e skip_gather_fact=${SKIP_GATHER_FACT}"
;;

precheck)
ACTION="Precheck port and docker installation in target hosts"
ACTION="Prechecking port and docker installation in target hosts"
EXTRA_OPTS="${EXTRA_OPTS} -e ansitheus_action=precheck"
EXTRA_OPTS="${EXTRA_OPTS} -e skip_gather_fact=${SKIP_GATHER_FACT}"
;;

destroy)
ACTION="Destroy Prometheus containers and service configuration"
ACTION="Destroying Prometheus containers and service configuration"
EXTRA_OPTS="${EXTRA_OPTS} -e ansitheus_action=destroy"
EXTRA_OPTS="${EXTRA_OPTS} -e skip_gather_fact=${SKIP_GATHER_FACT}"
EXTRA_OPTS="${EXTRA_OPTS} -e destroy_include_images=${REMOVE_INCLUDE_IMAGES}"
Expand Down

0 comments on commit 42ef0c8

Please sign in to comment.