feat(k8s): add kubetcl notes

This commit is contained in:
Marcello 2023-03-14 09:54:39 +01:00
parent 2725e3cb70
commit 87fa889363
2 changed files with 25 additions and 1 deletions

View file

@ -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/)

View file

@ -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
```