13

I want to know difference between gcloud and gsuitl. Where do we use what? Why certain commands begin with gsutil while others with gcloud?

siamsot
  • 1,062
  • 1
  • 7
  • 16
Kshitij Singh
  • 181
  • 1
  • 6

2 Answers2

20

The gsutil command is used only for Cloud Storage.

With the gcloud command, you can interact with other Google Cloud products like the App Engine, Google Kubernetes Engine etc. You can have a look here and here for more info.

siamsot
  • 1,062
  • 1
  • 7
  • 16
  • 9
    For additional "color", first came App Engine then Cloud Storage. At that time, there were service-specific CLIs for each (`gsutil` for Cloud Storage). By the time `gcloud` (Cloud SDK) provided a framework for any Google Cloud Platform service, `gsutil` was so embedded|familiar, that it was not (and still hasn't been) unified under `gcloud` (e.g. `gcloud storage ...` does not exist). Generally this isn't a problem although it begs the OP's question *and* it sometimes adds complexity when trying to script `gcloud` and `gsutil` when dealing with e.g. authentication. – DazWilkin Nov 16 '19 at 20:51
3

The gsutil is a Python application that lets you access Google Cloud Storage from the command line. You can use gsutil to do a wide range of bucket and object management tasks, including:

Creating and deleting buckets. Uploading, downloading, and deleting objects. Listing buckets and objects. Moving, copying, and renaming objects. Editing object and bucket ACLs.

The gcloud command-line interface is the primary CLI tool to create and manage Google Cloud resources. You can use this tool to perform many common platform tasks either from the command line or in scripts and other automations.

For example, you can use the gcloud CLI to create and manage:

Google Compute Engine virtual machine instances and other resources, Google Cloud SQL instances, Google Kubernetes Engine clusters, Google Cloud Dataproc clusters and jobs, Google Cloud DNS managed zones and record sets, Google Cloud Deployment manager deployments.