-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
74 lines (73 loc) · 2.13 KB
/
Copy pathrender.yaml
File metadata and controls
74 lines (73 loc) · 2.13 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
services:
- type: web
name: api-gateway
runtime: docker
plan: free
region: oregon
dockerfilePath: ./ApiGatewayApp/ApiGatewayApp/Dockerfile
dockerContext: .
numInstances: 1
healthCheckPath: /health
envVars:
- key: ASPNETCORE_ENVIRONMENT
value: Production
- key: ASPNETCORE_URLS
value: http://+:8080
- key: OTEL_EXPORTER_ENDPOINT
value: http://jaeger-pjqc.onrender.com:4317
- key: OTEL_EXPORTER_OTLP_PROTOCOL
value: grpc
- key: OTEL_EXPORTER_OTLP_PROTOCOL_FALLBACK
value: http
- key: OTEL_EXPORTER_OTLP_INSECURE
value: "true"
- key: DOTNET_SYSTEM_NET_HTTP_SOCKETSHTTPHANDLER_HTTP2UNENCRYPTEDSUPPORT
value: true
- key: OTEL_METRIC_EXPORT_INTERVAL
value: "60000"
- key: OTEL_TRACES_SAMPLER
value: "always_on"
- key: ASPNETCORE_FORWARDEDHEADERS_ENABLED
value: true
- fromGroup: api-gateway-config
- type: web
name: jaeger
runtime: image
image:
url: jaegertracing/all-in-one:latest
plan: free
region: oregon
envVars:
- key: COLLECTOR_ZIPKIN_HOST_PORT
value: :9411
- key: COLLECTOR_OTLP_ENABLED
value: "true"
- key: COLLECTOR_HEALTH_CHECK_HTTP_PORT
value: "14269"
- key: COLLECTOR_HTTP_SERVER_HOST_PORT
value: :14268
- key: QUERY_BASE_PATH
value: /
healthCheckPath: /
startCommand: >
--collector.otlp.enabled=true
--collector.otlp.grpc.host-port=:4317
--collector.otlp.http.host-port=:4318
--collector.zipkin.host-port=:9411
--query.port=16686
--collector.http-port=14268
--collector.grpc-port=14250
--collector.health-check-http-port=14269
--query.base-path=/
autoDeploy: false
envVarGroups:
- name: api-gateway-config
envVars:
- key: DOTNET_ENVIRONMENT
value: Production
- key: LOGGING_LEVEL
value: Information
- key: USER_SERVICE_URL
value: https://user-service-abcd.onrender.com
- key: AUTH_SERVICE_URL
value: https://auth-service-efgh.onrender.com