[CLI] Fix status message on cluster creation (#14477)

* Fix message on BYOC cluster creation

Co-authored-by: thomas chaton <thomas@grid.ai>
This commit is contained in:
Dmitry Frolov 2022-09-04 14:03:38 -04:00 committed by GitHub
parent ce0bde702a
commit 693116f3b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class AWSClusterManager:
if wait:
_wait_for_cluster_state(self.api_client, resp.id, V1ClusterState.RUNNING)
click.echo(f"${resp.id} cluster is ${resp.status.phase}")
click.echo(f"{resp.id} cluster is in {resp.status.phase} state")
def get_clusters(self):
resp = self.api_client.cluster_service_list_clusters(phase_not_in=[V1ClusterState.DELETED])