gcloud: add German translation (#10961)

* gcloud: add German translation

---------

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
pull/23/head
Jan 2023-10-14 05:51:37 +02:00 committed by GitHub
parent d43736020d
commit 2f3bddddf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
pages.de/common/gcloud.md Normal file
View 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}}`