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) <gchamoul@redhat.com>
(cherry picked from commit 7e5c3b1b28)
(cherry picked from commit 9a0498a539)
This commit is contained in:
Gael Chamoulaud (Strider) 2020-10-13 11:45:09 +02:00
parent c3195685be
commit 9af0a189ed
No known key found for this signature in database
GPG Key ID: 4119D0305C651D66
1 changed files with 1 additions and 10 deletions

View File

@ -236,15 +236,6 @@ class TripleOValidatorRun(command.Command):
help=_("Execute the validations using a custom plan name")
)
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"
@ -381,7 +372,7 @@ class TripleOValidatorRun(command.Command):
validation_name=parsed_args.validation_name,
extra_env_vars=parsed_args.extra_env_vars,
python_interpreter=parsed_args.python_interpreter,
quiet=parsed_args.quiet)
quiet=True)
# Build output
t = PrettyTable(border=True, header=True, padding_width=1)