mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
feat(k8s): add kubetcl
notes
This commit is contained in:
parent
2725e3cb70
commit
87fa889363
2 changed files with 25 additions and 1 deletions
|
@ -59,7 +59,7 @@ VMs incur a lot of overhead beyond what is being consumed by your application lo
|
|||
|
||||
---
|
||||
|
||||
### Docker CLI
|
||||
## Docker CLI
|
||||
|
||||
### [`docker run`](https://docs.docker.com/engine/reference/commandline/run/)
|
||||
|
||||
|
|
|
@ -1 +1,25 @@
|
|||
# Kubernetes
|
||||
|
||||
## `kubectl`
|
||||
|
||||
### `kubectl get`
|
||||
|
||||
```sh
|
||||
kubectl config get-contexts # list available contexts
|
||||
|
||||
kubectl get namespaces # list namespaces inside current context
|
||||
|
||||
kubectl get pod -n|--namespace <namespace> # list pods inside namespace
|
||||
kubectl get pod [-n|--namespace <namespace>] <pod> -o|--output jsonpath='{.spec.containers[*].name}' # list containers inside pod
|
||||
```
|
||||
|
||||
### `kubectl exec`
|
||||
|
||||
```sh
|
||||
kubectl exec [-i|--stdin] [-t|--tty] [-n|--namespace <namespace>] <pod> [-c|--container <container>] -- <command> # execute a command inside a container
|
||||
```
|
||||
### `kubectl logs`
|
||||
|
||||
```sh
|
||||
kubectl logs [-f|--follow] [-n|--namespace <namespace>] <pod> [-c|--container] # get pod/container logs
|
||||
```
|
Loading…
Add table
Reference in a new issue