Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between gcloud alpha commands and gcloud beta commands?

I have a one question aboud gcloud (google-cloud-sdk).

I have found a gcloud components to using interavtive shell of google cloud.

using like this command

[hostname]# gcloud components list

and I found a results

│ Installed │ gcloud Alpha Commands│ alpha  │   < 1 MiB │
│ Installed | gcloud Beta Commands │ beta   │   < 1 MiB │

In google cloud (https://cloud.google.com/sdk/docs/interactive-gcloud), shows a 'gcloud Alpha Commands' but not exist 'gcloud Beta Commands'.

What is the difference between alpha commands and beta commands?

like image 669
Lee. YunSu Avatar asked Feb 05 '23 20:02

Lee. YunSu


1 Answers

It's the lifecycle.

Alpha means that the feature is typically not ready for production and might still be actively developed.

Beta on the other hand is normally a completed feature, that is being tested to be production ready.

For more info: Wikipedia

like image 176
Hedam Avatar answered Feb 13 '23 06:02

Hedam