-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.txt
58 lines (51 loc) · 1.11 KB
/
commands.txt
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
apiVersion: v1
kind: Pod
metadata:
name: nginx
namespace: default
spec:
containers:
- name: nginx-container
image: nginx
---
kubectl create -f pod.yaml
kubectl run --generator=run-pod/v1 nginx-new --image=nginx
kubectl get pods
kubectl describe pod nginx
kubectl delete pod nginx
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
---
kubectl create -f deploy.yaml
kubectl run nginx-new --image=nginx
kubectl get deployments
kubectl get pods
---
kubectl set image deployment/nginx-deployment nginx=nginx:alpine
kubectl rollout status -w deployment/nginx-deployment
kubectl rollout undo deployment/nginx-deployment
---
kubectl create configmap prod-config --from-literal=data.aging.days=7
kubectl describe configmap prod-config
kubectl create secret generic db-details --from-literal=db-pass=abc123
kubectl describe secret db-details
---
kubectl api-resources