-
Notifications
You must be signed in to change notification settings - Fork 9
/
minion-army.yml
185 lines (184 loc) · 3.59 KB
/
minion-army.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: one-eyed-minion
labels:
serviceType: one-eyed-minion
spec:
replicas: 2
minReadySeconds: 10
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
template:
metadata:
name: one-eyed-minion
labels:
serviceType: one-eyed-minion
spec:
containers:
- name: one-eyed-minion
image: minion:latest
imagePullPolicy: Never
ports:
- containerPort: 8080
env:
- name: JAVA_OPTS
value: -Xmx64m -Xms64m
- name: SPRING_APPLICATION_NAME
value: "one-eyed-minion"
---
apiVersion: v1
kind: Service
metadata:
name: one-eyed-minion-entrypoint
namespace: default
spec:
selector:
serviceType: one-eyed-minion
ports:
- port: 8080
targetPort: 8080
nodePort: 30080
type: NodePort
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: two-eyed-minion
labels:
serviceType: two-eyed-minion
spec:
replicas: 2
minReadySeconds: 10
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
template:
metadata:
name: two-eyed-minion
labels:
serviceType: two-eyed-minion
spec:
containers:
- name: two-eyed-minion
image: minion:latest
imagePullPolicy: Never
ports:
- containerPort: 8080
env:
- name: JAVA_OPTS
value: -Xmx64m -Xms64m
- name: SPRING_APPLICATION_NAME
value: "two-eyed-minion"
---
apiVersion: v1
kind: Service
metadata:
name: two-eyed-minion-entrypoint
namespace: default
spec:
selector:
serviceType: two-eyed-minion
ports:
- port: 8080
targetPort: 8080
nodePort: 30081
type: NodePort
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: sad-minion
labels:
serviceType: sad-minion
spec:
replicas: 2
minReadySeconds: 10
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
template:
metadata:
name: sad-minion
labels:
serviceType: sad-minion
spec:
containers:
- name: sad-minion
image: minion:latest
imagePullPolicy: Never
ports:
- containerPort: 8080
env:
- name: JAVA_OPTS
value: -Xmx64m -Xms64m
- name: SPRING_APPLICATION_NAME
value: "sad-minion"
---
apiVersion: v1
kind: Service
metadata:
name: sad-minion-entrypoint
namespace: default
spec:
selector:
serviceType: sad-minion
ports:
- port: 8080
targetPort: 8080
nodePort: 30082
type: NodePort
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: happy-minion
labels:
serviceType: happy-minion
spec:
replicas: 2
minReadySeconds: 10
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
template:
metadata:
name: happy-minion
labels:
serviceType: happy-minion
spec:
containers:
- name: happy-minion
image: minion:latest
imagePullPolicy: Never
ports:
- containerPort: 8080
env:
- name: JAVA_OPTS
value: -Xmx64m -Xms64m
- name: SPRING_APPLICATION_NAME
value: "happy-minion"
---
apiVersion: v1
kind: Service
metadata:
name: happy-minion-entrypoint
namespace: default
spec:
selector:
serviceType: happy-minion
ports:
- port: 8080
targetPort: 8080
nodePort: 30083
type: NodePort