How to set table format as default in google cloud shell?

Viewed 30

When I try to list anything, my result is not grouped as a table ( as in the video). Each region is listed separately with its descriptions. Something like this


NAME: us-west3

CPUS: 0/24

DISKS_GB: 0/4096

ADDRESSES: 0/8

RESERVED_ADDRESSES: 0/8

STATUS: UP

TURNDOWN_DATE:

NAME: us-west4

CPUS: 0/24

DISKS_GB: 0/4096

ADDRESSES: 0/8

RESERVED_ADDRESSES: 0/8

STATUS: UP

TURNDOWN_DATE:


1 Answers

Please try:

gcloud config set accessibility/screen_reader False

And then repeat the command.

Related