-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
kubernetes_app.yml
250 lines (250 loc) · 5.49 KB
/
kubernetes_app.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
apiVersion: v1
kind: Namespace
metadata:
name: production
labels:
name: production
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: web-editor-ingress
namespace: production
annotations:
kubernetes.io/ingress.global-static-ip-name: "production-p5-web-editor-ip"
spec:
defaultBackend:
service:
name: web-editor-node
port:
number: 8000
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: preview-editor-ingress
namespace: production
annotations:
# need to make another global static ip
kubernetes.io/ingress.global-static-ip-name: "production-p5-preview-editor-ip"
spec:
defaultBackend:
service:
name: web-editor-node
port:
number: 8002
---
apiVersion: v1
kind: Service
metadata:
name: web-editor-node
namespace: production
labels:
app: web-editor
spec:
# if your cluster supports it, uncomment the following to automatically create
# an external load-balanced IP for the frontend service.
# type: LoadBalancer
type: NodePort
ports:
- port: 8000
name: editor-port
targetPort: 8000
- port: 8002
name: preview-port
targetPort: 8002
selector:
app: web-editor
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: web-editor-node
namespace: production
spec:
selector:
matchLabels:
app: web-editor
replicas: 7
template:
metadata:
labels:
app: web-editor
spec:
containers:
- name: web-editor-app
image: index.docker.io/catarak/p5.js-web-editor:latest
# temp, just to test kubernetes
# envFrom:
# - configMapRef:
# name: web-editor-env
envFrom:
- secretRef:
name: web-editor-credentials
imagePullPolicy: Always
resources:
limits:
cpu: 1000m
memory: 2048Mi
requests:
cpu: 500m
memory: 1100Mi
ports:
- containerPort: 8000
readinessProbe:
httpGet:
path: /health
port: 8000
---
apiVersion: autoscaling/v1
kind: HorizontalPodAutoscaler
metadata:
name: web-editor-node
namespace: production
spec:
maxReplicas: 18
minReplicas: 6
scaleTargetRef:
apiVersion: extensions/v1beta1
kind: Deployment
name: web-editor-node
targetCPUUtilizationPercentage: 80
# ---
# # cronjob for p5.js examples
# apiVersion: batch/v1beta1
# kind: CronJob
# metadata:
# name: fetch-examples-job
# spec:
# schedule: "0 0 * * 0"
# jobTemplate:
# spec:
# template:
# spec:
# containers:
# - name: fetch-examples
# image: index.docker.io/catarak/p5.js-web-editor:latest
# command: ["npm", "run", "fetch-examples:prod"]
# imagePullPolicy: Always
# envFrom:
# - secretRef:
# name: web-editor-credentials
# restartPolicy: Never
# ---
# # cronjob for generative gestaltung p5.js examples
# apiVersion: batch/v1beta1
# kind: CronJob
# metadata:
# name: fetch-examples-gg-job
# spec:
# schedule: "30 0 * * 0"
# jobTemplate:
# spec:
# template:
# spec:
# containers:
# - name: fetch-examples-gg
# image: index.docker.io/catarak/p5.js-web-editor:latest
# command: ["npm", "run", "fetch-examples-gg:prod"]
# imagePullPolicy: Always
# envFrom:
# - secretRef:
# name: web-editor-credentials
# restartPolicy: Never
---
apiVersion: v1
kind: Namespace
metadata:
name: staging
labels:
name: staging
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: web-editor-ingress
namespace: staging
annotations:
kubernetes.io/ingress.global-static-ip-name: "staging-p5-web-editor-ip"
spec:
defaultBackend:
service:
name: web-editor-node
port:
number: 8001
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: preview-editor-ingress
namespace: staging
annotations:
kubernetes.io/ingress.global-static-ip-name: "staging-p5-preview-editor-ip"
spec:
defaultBackend:
service:
name: web-editor-node
port:
number: 8003
---
apiVersion: v1
kind: Service
metadata:
name: web-editor-node
namespace: staging
labels:
app: web-editor
spec:
# if your cluster supports it, uncomment the following to automatically create
# an external load-balanced IP for the frontend service.
# type: LoadBalancer
type: NodePort
ports:
- port: 8001
name: editor-port
targetPort: 8000
- port: 8003
name: preview-port
targetPort: 8002
selector:
app: web-editor
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: web-editor-node
namespace: staging
spec:
selector:
matchLabels:
app: web-editor
replicas: 1
template:
metadata:
labels:
app: web-editor
spec:
containers:
- name: web-editor-app
image: index.docker.io/catarak/p5.js-web-editor-staging:latest
# temp, just to test kubernetes
# envFrom:
# - configMapRef:
# name: web-editor-env
envFrom:
- secretRef:
name: web-editor-credentials
imagePullPolicy: Always
resources:
limits:
cpu: 1000m
memory: 2048Mi
requests:
cpu: 500m
memory: 1100Mi
ports:
- containerPort: 8000
readinessProbe:
httpGet:
path: /health
port: 8000