mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
gcloud: add German translation (#10961)
* gcloud: add German translation --------- Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
This commit is contained in:
parent
d43736020d
commit
2f3bddddf7
1 changed files with 36 additions and 0 deletions
36
pages.de/common/gcloud.md
Normal file
36
pages.de/common/gcloud.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# gcloud
|
||||||
|
|
||||||
|
> Das offizielle CLI-Tool für die Google Cloud Platform.
|
||||||
|
> Weitere Informationen: https://cloud.google.com/sdk/gcloud.
|
||||||
|
|
||||||
|
- Liste alle Eigenschaften der aktiven Konfiguration auf:
|
||||||
|
|
||||||
|
`gcloud config list`
|
||||||
|
|
||||||
|
- Mit einem Google-Konto anmelden:
|
||||||
|
|
||||||
|
`gcloud auth login`
|
||||||
|
|
||||||
|
- Lege das aktive Projekt fest:
|
||||||
|
|
||||||
|
`gcloud config set project {{Projektname}}`
|
||||||
|
|
||||||
|
- Stelle eine SSH-Verbindung zu einer virtuellen Maschineninstanz her:
|
||||||
|
|
||||||
|
`gcloud compute ssh {{Benutzer}}@{{Instanz}}`
|
||||||
|
|
||||||
|
- Zeige alle Google Compute Engine-Instanzen in einem Projekt an. Standardmäßig werden Instanzen aus allen Zonen aufgelistet:
|
||||||
|
|
||||||
|
`gcloud compute instances list`
|
||||||
|
|
||||||
|
- Aktualisiere eine kubeconfig-Datei mit den entsprechenden Anmeldeinformationen, um kubectl auf einen bestimmten Cluster in Google Kubernetes Engine auszurichten:
|
||||||
|
|
||||||
|
`gcloud container clusters get-credentials {{Clustername}}`
|
||||||
|
|
||||||
|
- Aktualisiere alle gcloud CLI-Komponenten:
|
||||||
|
|
||||||
|
`gcloud components update`
|
||||||
|
|
||||||
|
- Zeige Hilfe für einen bestimmten Befehl an:
|
||||||
|
|
||||||
|
`gcloud help {{Befehl}}`
|
Loading…
Add table
Reference in a new issue