ENG-1404: Hide region CLI flag for cluster creation (#15277)

Hide region CLI flag
This commit is contained in:
Neven Miculinic 2022-10-28 14:03:59 +02:00 committed by GitHub
parent 6b8f394001
commit 478ca8c3a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Fixed an issue when using the CLI without arguments ([#14877](https://github.com/Lightning-AI/lightning/pull/14877))
- Fixed a bug where the upload files endpoint would raise an error when running locally ([#14924](https://github.com/Lightning-AI/lightning/pull/14924))
- Fixed BYOC cluster region selector -> hiding it from help since only us-east-1 has been tested and is recommended ([#15277]https://github.com/Lightning-AI/lightning/pull/15277)
- Fixed a bug when launching an app on multiple clusters ([#15226](https://github.com/Lightning-AI/lightning/pull/15226))
## [0.6.2] - 2022-09-21

View File

@ -25,6 +25,7 @@ def create() -> None:
required=False,
default="us-east-1",
help="AWS region that is used to host the associated resources.",
hidden=True,
)
@click.option(
"--instance-types",