diff --git a/acto/cli/__init__.py b/acto/cli/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acto/cli/schema_match.py b/acto/cli/schema_match.py index dab78b34af..49fed6bebe 100644 --- a/acto/cli/schema_match.py +++ b/acto/cli/schema_match.py @@ -13,23 +13,23 @@ def main(): """Main function""" parser = argparse.ArgumentParser( - description="Analyze the CRD file and output an annotated yaml file" + description="Given a CRD file, annotated it with the matched Kubernetes schema information." ) parser.add_argument( "--crd", required=True, - help="Path to the yaml CRD file", + help="Path to the YAML CRD file", ) parser.add_argument( "--k8s-version", required=False, - default="1.29.0", + default="v1.29.0", help="Kubernetes version to match the schema with", ) parser.add_argument( "--output", required=False, - help="Path to dump the system state to", + help="Path to dump the annotated YAML file to", ) args = parser.parse_args()