This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
news-web.yaml
360 lines (349 loc) · 10.1 KB
/
news-web.yaml
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
---
apiVersion: v1
kind: ConfigMap
metadata:
name: news-web-envoy-config
namespace: default
data:
envoy.yaml: |
admin:
access_log_path: /var/log/envoy_admin_access.log
address:
socket_address:
address: 0.0.0.0
port_value: 9901
node:
id: "id_01"
cluster: "cluster_01"
static_resources:
listeners:
- name: ingress-listener
address:
socket_address:
address: 0.0.0.0
port_value: 8000
filter_chains:
- filters:
- name: envoy.http_connection_manager
config:
idle_timeout: 1s
forward_client_cert_details: sanitize_set
set_current_client_cert_details:
uri: true
codec_type: auto
access_log:
- name: envoy.file_access_log
config:
path: "/var/log/envoy_access.log"
stat_prefix: ingress_http
route_config:
name: local_route
virtual_hosts:
- name: local_service
domains: ["*"]
routes:
- match:
prefix: "/"
route:
cluster: news-web
http_filters:
- name: envoy.ext_authz
config:
failure_mode_allow: false
grpc_service:
google_grpc:
target_uri: 127.0.0.1:20000
stat_prefix: ext_authz
timeout: 0.5s
- name: envoy.router
- name: mtls-listener-requesting-news-backend
address:
socket_address:
address: 127.0.0.1
port_value: 9000
filter_chains:
- filters:
- name: envoy.http_connection_manager
config:
idle_timeout: 1s
forward_client_cert_details: sanitize_set
set_current_client_cert_details:
uri: true
codec_type: auto
access_log:
- name: envoy.file_access_log
config:
path: "/var/log/envoy_access.log"
stat_prefix: ingress_http
route_config:
name: local_route
virtual_hosts:
- name: local_service
domains: ["*"]
routes:
- match:
prefix: "/"
route:
cluster: requesting-news-backend
http_filters:
- name: envoy.router
- name: mtls-listener-requesting-ec-backend
address:
socket_address:
address: 127.0.0.1
port_value: 11000
filter_chains:
- filters:
- name: envoy.http_connection_manager
config:
idle_timeout: 1s
forward_client_cert_details: sanitize_set
set_current_client_cert_details:
uri: true
codec_type: auto
access_log:
- name: envoy.file_access_log
config:
path: "/var/log/envoy_access.log"
stat_prefix: ingress_http
route_config:
name: local_route
virtual_hosts:
- name: local_service
domains: ["*"]
routes:
- match:
prefix: "/"
route:
cluster: requesting-ec-backend
http_filters:
- name: envoy.router
clusters:
- name: spire_agent
connect_timeout: 0.25s
http2_protocol_options: {}
hosts:
- pipe:
path: /run/spire/sockets/agent.sock
- name: news-web
connect_timeout: 0.25s
type: strict_dns
lb_policy: ROUND_ROBIN
hosts:
- socket_address:
address: 127.0.0.1
port_value: 10000
- name: requesting-news-backend
connect_timeout: 0.25s
type: strict_dns
lb_policy: ROUND_ROBIN
hosts:
- socket_address:
address: news-backend
port_value: 8000
tls_context:
common_tls_context:
tls_certificate_sds_secret_configs:
- name: "spiffe://example.org/news-web"
sds_config:
api_config_source:
api_type: GRPC
grpc_services:
envoy_grpc:
cluster_name: spire_agent
combined_validation_context:
default_validation_context:
verify_subject_alt_name:
- "spiffe://example.org/news-backend"
validation_context_sds_secret_config:
name: "spiffe://example.org"
sds_config:
api_config_source:
api_type: GRPC
grpc_services:
envoy_grpc:
cluster_name: spire_agent
- name: requesting-ec-backend
connect_timeout: 0.25s
type: strict_dns
lb_policy: ROUND_ROBIN
hosts:
- socket_address:
address: ec-backend
port_value: 8000
tls_context:
common_tls_context:
tls_certificate_sds_secret_configs:
- name: "spiffe://example.org/news-web"
sds_config:
api_config_source:
api_type: GRPC
grpc_services:
envoy_grpc:
cluster_name: spire_agent
combined_validation_context:
default_validation_context:
verify_subject_alt_name:
- "spiffe://example.org/ec-backend"
validation_context_sds_secret_config:
name: "spiffe://example.org"
sds_config:
api_config_source:
api_type: GRPC
grpc_services:
envoy_grpc:
cluster_name: spire_agent
---
apiVersion: v1
kind: ConfigMap
metadata:
name: news-web-nginx-config
namespace: default
data:
default.conf: |
upstream news-backend-via-envoy {
server 127.0.0.1:9000;
}
upstream ec-backend-via-envoy {
server 127.0.0.1:11000;
}
server {
listen 10000;
server_name localhost;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
error_page 403 @forbidden;
location /noproxy {
return 200 "news-web no proxy endpoint";
}
location /ec-backend-data {
proxy_pass http://ec-backend-via-envoy;
}
location / {
proxy_pass http://news-backend-via-envoy;
proxy_intercept_errors on;
}
location @forbidden {
return 403 "Forbidden. Not authorized by news-backend's OPA.";
}
}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: news-web-opa-config
namespace: default
data:
config.yaml: |
plugins:
envoy_ext_authz_grpc:
addr: :20000
query: data.envoy.authz.allow
policy.rego: |
package envoy.authz
import input.attributes.request.http as http_request
import input.attributes.source.address as source_address
default allow = false
allow {
http_request.method == "GET"
http_request.headers["x-opa-secret"] == "news-web-secret"
}
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: news-web
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: news-web
template:
metadata:
labels:
app: news-web
spec:
containers:
- name: envoy
image: envoyproxy/envoy:v1.12.2
command: ["/usr/local/bin/envoy"]
args: ["--config-path","/etc/envoy/envoy.yaml"]
ports:
- containerPort: 8000
volumeMounts:
- name: news-web-envoy-config
mountPath: /etc/envoy
readOnly: true
- name: spire-agent-socket
mountPath: /run/spire/sockets
readOnly: true
- name: news-web
image: nginx:1.17.6
ports:
- containerPort: 10000
volumeMounts:
- name: news-web-nginx-config
mountPath: /etc/nginx/conf.d
readOnly: true
- name: opa
image: openpolicyagent/opa:0.15.1-istio
args: ["run","--log-level=debug","--server","--config-file","/etc/opa/config.yaml","/etc/opa/policy.rego"]
ports:
- containerPort: 20000
volumeMounts:
- name: news-web-opa-config
mountPath: /etc/opa
readOnly: true
- name: spire-agent-socket
mountPath: /run/spire/sockets
readOnly: true
volumes:
- name: news-web-envoy-config
configMap:
name: news-web-envoy-config
- name: spire-agent-socket
hostPath:
path: /run/spire/sockets
type: Directory
- name: news-web-nginx-config
configMap:
name: news-web-nginx-config
- name: news-web-opa-config
configMap:
name: news-web-opa-config
---
apiVersion: v1
kind: Service
metadata:
name: news-web
namespace: default
spec:
type: NodePort
ports:
- name: envoy-port
port: 8000
targetPort: 8000
- name: envoy-admin-port
port: 9901
targetPort: 9901
selector:
app: news-web
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: news-web
namespace: default
spec:
rules:
- host: news-web.example.org
http:
paths:
- backend:
serviceName: news-web
servicePort: 8000