Google cloud sdk: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Overview ==
== Overview ==
google cloud sdk 내용 정리
google cloud sdk 내용 정리.


== Install ==
Google cloud 는 서비스 이용을 위해 여러가지 툴들을 지원한다.


google cloud sdk Downlaod
== Installation ==
* https://cloud.google.com/sdk/
* https://cloud.google.com/sdk/


== gcloud wide flags ==
== SDK suites ==
gcloud 전역에서 사용되는 flag 정리.
* gcloud Tool
: gcloud manages authentication, local configuration, developer workflow, and interactions with the Cloud Platform APIs.


=== --account ===
* bq Tool
Google cloud platform user account to use for invocation. Overrides the default core/account property value for this command invocation.
: bq allows you to run queries, manipulate datasets, tables, and entitles in BigQuery through the command line.
<pre>
--account=ACCOUNT
</pre>


=== --project ===
* gsutil Tool
The google cloud platform project name to use for this invocation. If  omitted, then the current project is assumed; the current project can be listed using `gcloud config list --format='text(core.project)'` and can be set using `gcloud config set project PROJECTID`. Overrides the default core/project property value for this command invocation.
: gsutil provides command line access to manage Cloud Storage buckets and objects.
<pre>
--project=PROJECT_ID
</pre>


== compute ==
* kubectl Tool
 
: kubectl orchestrates the deployment and management of Kubernetes container clusters on gcloud.
=== compute instances ===
Read and manipulate Google Compute Engine virtual machine instances
 
<pre>
gcloud compute instances GROUP | COMMAND [GCLOUD_WIDE_FLAG ...]
</pre>


* Powershell cmdlets(Windows)
: Collection of Windows Powershell cmdlets for managing Google Cloud Platform resources within the Windows PowerShell environment.


== See also ==
* https://cloud.google.com/sdk/ - CLOUD SDK


[[category:google cloud]]
[[category:google cloud]]

Latest revision as of 22:15, 26 June 2019

Overview

google cloud sdk 내용 정리.

Google cloud 는 서비스 이용을 위해 여러가지 툴들을 지원한다.

Installation

SDK suites

  • gcloud Tool
gcloud manages authentication, local configuration, developer workflow, and interactions with the Cloud Platform APIs.
  • bq Tool
bq allows you to run queries, manipulate datasets, tables, and entitles in BigQuery through the command line.
  • gsutil Tool
gsutil provides command line access to manage Cloud Storage buckets and objects.
  • kubectl Tool
kubectl orchestrates the deployment and management of Kubernetes container clusters on gcloud.
  • Powershell cmdlets(Windows)
Collection of Windows Powershell cmdlets for managing Google Cloud Platform resources within the Windows PowerShell environment.

See also