mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-11 06:16:53 +03:00
5c26174aa9
* pages/*: update links and more info link script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: reformat code * ax-webapp: fix link * curl: fix false positive Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
1002 B
1002 B
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}}