blob: 6d2561354e6c58514ede960637d195d685816ea9 [file] [log] [blame]
Mohammed Naser9ad0d462023-01-15 20:36:37 -05001static_resources:
2 listeners:
3 - name: listener_hubble_ui
4 address:
5 socket_address:
6 address: 0.0.0.0
7 port_value: 8081
8 filter_chains:
9 - filters:
10 - name: envoy.filters.network.http_connection_manager
11 typed_config:
12 "@type": type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager
13 codec_type: auto
14 stat_prefix: ingress_http
15 route_config:
16 name: local_route
17 virtual_hosts:
18 - name: local_service
19 domains: ["*"]
20 routes:
21 - match:
22 prefix: "/api/"
23 route:
24 cluster: backend
25 prefix_rewrite: "/"
26 timeout: 0s
27 max_stream_duration:
28 grpc_timeout_header_max: 0s
29 - match:
30 prefix: "/"
31 route:
32 cluster: frontend
33 cors:
34 allow_origin_string_match:
35 - prefix: "*"
36 allow_methods: GET, PUT, DELETE, POST, OPTIONS
37 allow_headers: keep-alive,user-agent,cache-control,content-type,content-transfer-encoding,x-accept-content-transfer-encoding,x-accept-response-streaming,x-user-agent,x-grpc-web,grpc-timeout
38 max_age: "1728000"
39 expose_headers: grpc-status,grpc-message
40 http_filters:
41 - name: envoy.filters.http.grpc_web
42 - name: envoy.filters.http.cors
43 - name: envoy.filters.http.router
44 clusters:
45 - name: frontend
46 connect_timeout: 0.25s
47 type: strict_dns
48 lb_policy: round_robin
49 load_assignment:
50 cluster_name: frontend
51 endpoints:
52 - lb_endpoints:
53 - endpoint:
54 address:
55 socket_address:
56 address: 127.0.0.1
57 port_value: 8080
58 - name: backend
59 connect_timeout: 0.25s
60 type: logical_dns
61 lb_policy: round_robin
62 http2_protocol_options: {}
63 load_assignment:
64 cluster_name: backend
65 endpoints:
66 - lb_endpoints:
67 - endpoint:
68 address:
69 socket_address:
70 address: 127.0.0.1
71 port_value: 8090