commit 7e5c3b1b284c0f5b6c51ec366406667b99577cec Author: Gael Chamoulaud (Strider) Date: Tue Oct 13 11:45:09 2020 +0200 Remove --quiet argument from the validator run CLI command. The validations were always executed in a verbose mode regardless of the presence of the argument on the command line. The validations must be executed silently by default and if it is necessary, the full log could be found in the artifacts directory Change-Id: I941a8a5174965a6711f22f28f45e05b2ef2aea9f Signed-off-by: Gael Chamoulaud (Strider) diff --git a/tripleoclient/v1/tripleo_validator.py b/tripleoclient/v1/tripleo_validator.py index 3c5c110..a7fbb25 100644 --- a/tripleoclient/v1/tripleo_validator.py +++ b/tripleoclient/v1/tripleo_validator.py @@ -223,15 +223,6 @@ class TripleOValidatorRun(command.Command): ) parser.add_argument( - '--quiet', - action='store', - default=False, - help=_( - "Run Ansible in silent mode." - ) - ) - - parser.add_argument( '--limit', action='store', required=False, help=_( "A string that identifies a single node or comma-separated" "list of nodes to be upgraded in parallel in this upgrade" @@ -348,7 +339,7 @@ class TripleOValidatorRun(command.Command): validations_dir=constants.ANSIBLE_VALIDATION_DIR, validation_name=parsed_args.validation_name, extra_env_vars=parsed_args.extra_env_vars, - quiet=parsed_args.quiet) + quiet=True) # Build output t = PrettyTable(border=True, header=True, padding_width=1)