[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:
parent
ce0bde702a
commit
693116f3b5
|
@ -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])
|
||||
|
|
Loading…
Reference in New Issue