kubectl-*: add German translation (#8746)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: pixel <pixel+github@chrissx.de>
Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
This commit is contained in:
Jan
2022-12-21 04:34:38 +01:00
committed by GitHub
parent c70bae523e
commit 37d0281021
7 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# kubectl logs
> Logs für Container in einem Pod anzeigen.
> Weitere Informationen: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#logs>.
- Zeige Logs für einen Einzelcontainer-Pod an:
`kubectl logs {{pod_name}}`
- Zeige Logs für einen bestimmten Container in einem Pod an:
`kubectl logs --container {{container_name}} {{pod_name}}`
- Zeige Logs für alle Container in einem Pod an:
`kubectl logs --all-containers={{true}} {{pod_name}}`
- Folge den Pod-Logs (stream):
`kubectl logs --follow {{pod_name}}`
- Folge den Pod-Logs (stream) für einen bestimmten Container in einem Pod:
`kubectl logs --follow --container {{container_name}} {{pod_name}}`
- Zeige Pod-Logs die neuer einer relativen Zeit sind `10s`, `5m`, or `1h`:
`kubectl logs --since={{relative_time}} {{pod_name}}`
- Zeige die 10 neuesten Logzeilen in einem Pod:
`kubectl logs --tail={{10}} {{pod_name}}`