-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdemo-app-ai-daffy.yaml
More file actions
executable file
·270 lines (267 loc) · 5.66 KB
/
demo-app-ai-daffy.yaml
File metadata and controls
executable file
·270 lines (267 loc) · 5.66 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
apiVersion: apps/v1
kind: Deployment
metadata:
name: ai-daffy-frontend-deployment
spec:
replicas: 2
selector:
matchLabels:
app: ai-daffy-frontend
template:
metadata:
labels:
app: ai-daffy-frontend
spec:
containers:
- name: ai-daffy-frontend
image: randomlettergenerator/ai-daffy-frontend:latest
imagePullPolicy: Always
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "2048Mi"
cpu: "2000m"
ports:
- containerPort: 80
volumeMounts:
- name: nginx-config
mountPath: /etc/nginx/conf.d/
volumes:
- name: nginx-config
configMap:
name: nginx-config
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ai-daffy-backend-deployment
spec:
replicas: 2
selector:
matchLabels:
app: ai-daffy-backend
template:
metadata:
labels:
app: ai-daffy-backend
spec:
containers:
- name: ai-daffy-backend
image: randomlettergenerator/ai-daffy-backend:latest
imagePullPolicy: Always
resources:
requests:
memory: "64Mi"
cpu: "250m"
limits:
memory: "2048Mi"
cpu: "2000m"
ports:
- containerPort: 3000
env:
- name: OPENAI_API_KEY
valueFrom:
secretKeyRef:
name: openai-secret
key: OPENAI_API_KEY
readinessProbe:
httpGet:
path: /api/health
port: 3000
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
httpGet:
path: /api/health
port: 3000
initialDelaySeconds: 15
periodSeconds: 20
---
apiVersion: v1
kind: Service
metadata:
name: ai-daffy-frontend-service
spec:
type: NodePort
selector:
app: ai-daffy-frontend
ports:
- protocol: TCP
port: 80
targetPort: 80
nodePort: 30081
---
apiVersion: v1
kind: Service
metadata:
name: ai-daffy-backend-service
spec:
selector:
app: ai-daffy-backend
ports:
- protocol: TCP
port: 3000
targetPort: 3000
type: ClusterIP
---
apiVersion: v1
kind: Service
metadata:
name: ai-daffy-frontend-istio-service
namespace: default
labels:
istio-prometheus-scrape: "true"
spec:
selector:
app: ai-daffy-frontend
ports:
- name: http-envoy-prom
port: 15020
targetPort: 15020
---
apiVersion: v1
kind: Service
metadata:
name: ai-daffy-backend-istio-service
namespace: default
labels:
istio-prometheus-scrape: "true"
spec:
selector:
app: ai-daffy-backend
ports:
- name: http-envoy-prom
port: 15020
targetPort: 15020
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-frontend-to-backend
spec:
podSelector:
matchLabels:
app: ai-daffy-backend
ingress:
- from:
- podSelector:
matchLabels:
app: ai-daffy-frontend
ports:
- protocol: TCP
port: 3000
---
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-config
data:
default.conf: |
server {
listen 80;
server_name localhost;
# Serve static files
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
# Proxy API requests to backend
location /api/ {
proxy_pass http://ai-daffy-backend-service:3000;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
# Error handling
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: istio-service-monitor
namespace: default
labels:
release: prometheus
spec:
selector:
matchLabels:
app: istiod
namespaceSelector:
matchNames:
- istio-system
endpoints:
- interval: 10s
path: /metrics
port: http-monitoring
---
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: istio-sidecar-servicemonitor
namespace: default
labels:
release: prometheus
spec:
selector:
matchLabels:
istio-prometheus-scrape: "true"
namespaceSelector:
any: true
endpoints:
- port: http-envoy-prom
path: /metrics
interval: 10s
scheme: http
---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: fake-traffic-gateway
namespace: default
spec:
selector:
istio: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: fake-traffic-virtualservice
namespace: default
spec:
hosts:
- "*"
gateways:
- fake-traffic-gateway
http:
- match:
- uri:
prefix: "/"
route:
- destination:
host: ai-daffy-frontend-service
port:
number: 80
---
apiVersion: v1
kind: Secret
metadata:
name: openai-secret
type: Opaque
data:
OPENAI_API_KEY: c2stcHJvai0xSGxBNU1QVUtybWUxbmdsQlJSUkM4YmI3NGhoejFfMGlJQnFWSksyT0R4S1VtMlZRLW10d3NMMEVOTlptbWtoLVBCU2JkM042LVQzQmxia0ZKLXlHWWk2TXFjak0xaGFnSHJoTHV2czg1U0JUX2puOFN0OHhPeXJJSFFVcXZOV2w3a3FoN2RLUmJKcHNJQlVfU2M0ODlHeHptUUE=
---