Skip to content

Commit

Permalink
Move cloud CLI tools to common file (#660)
Browse files Browse the repository at this point in the history
Consolidate CLI tools for clouds under one file:
* aws-datasync
* aws-vcpu-limits
* azure-check
* azure-get-valid-skus
* gcp-check
  • Loading branch information
parasj authored Nov 2, 2022
1 parent 3efc976 commit 0af4389
Show file tree
Hide file tree
Showing 4 changed files with 357 additions and 324 deletions.
6 changes: 2 additions & 4 deletions skyplane/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@

import skyplane.cli
import skyplane.cli
import skyplane.cli.cli_aws
import skyplane.cli.cli_azure
import skyplane.cli.cli_cloud
import skyplane.cli.cli_config
import skyplane.cli.cli_internal as cli_internal
import skyplane.cli.experiments
Expand Down Expand Up @@ -59,8 +58,7 @@
app = typer.Typer(name="skyplane")
app.command()(cli_internal.replicate_random)
app.add_typer(skyplane.cli.experiments.app, name="experiments")
app.add_typer(skyplane.cli.cli_aws.app, name="aws")
app.add_typer(skyplane.cli.cli_azure.app, name="azure")
app.add_typer(skyplane.cli.cli_cloud.app, name="cloud")
app.add_typer(skyplane.cli.cli_config.app, name="config")


Expand Down
129 changes: 0 additions & 129 deletions skyplane/cli/cli_aws.py

This file was deleted.

191 changes: 0 additions & 191 deletions skyplane/cli/cli_azure.py

This file was deleted.

Loading

0 comments on commit 0af4389

Please sign in to comment.