aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/docs/queries/kubernetes.md
blob: 0948d7e5df396c6a6afae38379069e159d1883de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
title: Kubernetes
---

# Kubernetes tips

## Find top pods by CPU/memory

```bash
$ kubectl top pods --all-namespaces --sort-by='memory'
$ top pods --all-namespaces --sort-by='cpu'
```

## Find top nodes by CPU/memory

```bash
$ kubectl top nodes --sort-by='cpu'
$ kubectl top nodes --sort-by='memory'
```

## Kubernetes cheat sheet

[Open Kubernetes cheat sheet](https://kubernetes.io/docs/reference/kubectl/cheatsheet/)

## Lens IDE

[OpenLens](https://github.com/MuhammedKalkan/OpenLens)