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:
32
pages.de/common/kubectl-delete.md
Normal file
32
pages.de/common/kubectl-delete.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# kubectl delete
|
||||
|
||||
> Lösche Kubernetes-Ressourcen.
|
||||
> Weitere Informationen: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#delete>.
|
||||
|
||||
- Lösche einen bestimmten Pod:
|
||||
|
||||
`kubectl delete pod {{pod_name}}`
|
||||
|
||||
- Lösche ein bestimmtes Deployment:
|
||||
|
||||
`kubectl delete deployment {{deployment_name}}`
|
||||
|
||||
- Lösche eine bestimmte Node:
|
||||
|
||||
`kubectl delete node {{node_name}}`
|
||||
|
||||
- Lösche alle Pods in einem bestimmten Namespaces:
|
||||
|
||||
`kubectl delete pods --all --namespace {{namespace}}`
|
||||
|
||||
- Lösche alle Deployments und Services in einem bestimmten Namespace:
|
||||
|
||||
`kubectl delete deployments,services --all --namespace {{namespace}}`
|
||||
|
||||
- Lösche alle Nodes:
|
||||
|
||||
`kubectl delete nodes --all`
|
||||
|
||||
- Lösche Resourcen, die in einer YAML Datei definiert sind:
|
||||
|
||||
`kubectl delete --filename {{pfad/zu/manifest.yaml}}`
|
Reference in New Issue
Block a user