Skip to content

Commit

Permalink
Merge branch 'main' into testcase-generator
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Gu <[email protected]>
  • Loading branch information
tylergu committed Feb 13, 2024
2 parents cbf6c84 + d3d9944 commit 1e47475
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Empty file added acto/cli/__init__.py
Empty file.
8 changes: 4 additions & 4 deletions acto/cli/schema_match.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 1e47475

Please sign in to comment.