mirror of
https://github.com/autistic-symposium/backend-and-orchestration-toolkit.git
synced 2025-06-09 15:32:46 -04:00
🍟 Rename eksctl
This commit is contained in:
parent
81b5d566c9
commit
ce2320ad4d
2 changed files with 0 additions and 71 deletions
62
kubectl.md
62
kubectl.md
|
@ -1,62 +0,0 @@
|
||||||
## Kubectl Commands
|
|
||||||
|
|
||||||
|
|
||||||
### **Pods**
|
|
||||||
|
|
||||||
Get pods:
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl get pods -n <namespace>
|
|
||||||
```
|
|
||||||
|
|
||||||
Debug pods:
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl describe pod <podname>
|
|
||||||
```
|
|
||||||
|
|
||||||
Get pod's log:
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl logs <podname>
|
|
||||||
```
|
|
||||||
|
|
||||||
### **Services**
|
|
||||||
|
|
||||||
Get services:
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl get services -n <namespace>
|
|
||||||
```
|
|
||||||
|
|
||||||
### **Deployments**
|
|
||||||
|
|
||||||
Get deployments:
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl get deployment -n <namespace>
|
|
||||||
```
|
|
||||||
|
|
||||||
### **Secrets**
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl get secret
|
|
||||||
```
|
|
||||||
|
|
||||||
### **Namespaces**
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl get namespaces
|
|
||||||
```
|
|
||||||
|
|
||||||
### **Configmaps**
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl get configmaps -n <namespace>
|
|
||||||
```
|
|
||||||
|
|
||||||
### **Ingress**
|
|
||||||
|
|
||||||
```
|
|
||||||
kubectl get ingress -n <namespace>
|
|
||||||
```
|
|
|
@ -1,9 +0,0 @@
|
||||||
# Learning Go
|
|
||||||
|
|
||||||
* [A Tour to Go](https://tour.golang.org/welcome/1).
|
|
||||||
* [How to write Go code](https://golang.org/doc/code.html).
|
|
||||||
* [Effective Go code](https://golang.org/doc/effective_go.html).
|
|
||||||
* [Daily Dep](https://golang.github.io/dep/docs/daily-dep.html).
|
|
||||||
* [Exercism](https://exercism.io/tracks/go).
|
|
||||||
* [GoDoc](https://godoc.org/).
|
|
||||||
* [Go Wiki](https://github.com/golang/go/wiki/Learn).
|
|
Loading…
Add table
Add a link
Reference in a new issue