-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpod.yml
72 lines (72 loc) · 1.25 KB
/
pod.yml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
apiVersion: v1
kind: Pod
metadata:
name: hello-world
labels:
app: hello-world
environment: dev
tier: backend
department: engineering
spec:
containers:
- name: hello-world
image: milanobrenovic/kubernetes:hello-world
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
---
apiVersion: v1
kind: Pod
metadata:
name: blue
labels:
name: blue
environment: test
spec:
containers:
- name: blue
image: milanobrenovic/kubernetes:blue
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
imagePullPolicy: Always
restartPolicy: Always
---
apiVersion: v1
kind: Pod
metadata:
name: green
labels:
name: green
environment: test
spec:
containers:
- name: green
image: milanobrenovic/kubernetes:green
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
imagePullPolicy: Always
restartPolicy: Always
---
apiVersion: v1
kind: Service
metadata:
name: labels-and-selector
spec:
selector:
name: green
environment: test
ports:
- port: 80
targetPort: 80
type: ClusterIP