You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+66-2Lines changed: 66 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,17 @@
1
1
What is Kubernetes?
2
2
> Kubernetes is a platform for managing containerized workloads. Kubernetes orchestrates computing, networking and storage to provide a seamless portability across infrastructure providers
3
3
4
+
## Cluster Info
5
+
```yaml
6
+
> kubectl config
7
+
> kubectl cluster -info
8
+
> kubectl get componentstatuses
9
+
```
10
+
4
11
## ViewingResource Information
12
+
5
13
#### Nodes
6
-
```yaml
14
+
```bash
7
15
> kubectl get no
8
16
> kubectl get no -o wide
9
17
> kubectl describe no
@@ -24,9 +32,65 @@ What is Kubernetes?
24
32
> kubectl get pod [pod_name] -o yaml --export > nameoffile.yaml
25
33
> kubectl get pods --field-selector status.phase=Running
0 commit comments