-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
110 lines (104 loc) · 3.73 KB
/
render.yaml
File metadata and controls
110 lines (104 loc) · 3.73 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
services:
# ── Gateway ───────────────────────────────────────────────────────────────
- type: web
name: notifyhub-gateway
region: oregon
plan: free
env: docker
rootDir: notifyhub-platform
dockerfilePath: notifyhub-gateway/Dockerfile
envVars:
- key: NOTIFYHUB_EVENT_INGESTION_URL
value: https://notifyhub-event-ingest.onrender.com
- key: SERVER_PORT
value: "8080"
healthCheckPath: /actuator/health
# ── Event Ingestion ───────────────────────────────────────────────────────
- type: web
name: notifyhub-event-ingest
region: oregon
plan: free
env: docker
rootDir: notifyhub-platform
dockerfilePath: notifyhub-event-ingestion/Dockerfile
envVars:
- key: SERVER_PORT
value: "8080"
- key: SPRING_KAFKA_BOOTSTRAP_SERVERS
value: pkc-oxqxx9.us-east-1.aws.confluent.cloud:9092
- key: KAFKA_SECURITY_PROTOCOL
value: SASL_SSL
- key: KAFKA_SASL_MECHANISM
value: PLAIN
- key: KAFKA_SASL_JAAS_CONFIG
sync: false
- key: SPRING_DATASOURCE_USERNAME
fromDatabase:
name: notifyhub-db
property: user
- key: SPRING_DATASOURCE_PASSWORD
fromDatabase:
name: notifyhub-db
property: password
- key: SPRING_DATASOURCE_DRIVER
value: org.postgresql.Driver
- key: SPRING_JPA_DDL_AUTO
value: update
- key: SPRING_JPA_DIALECT
value: org.hibernate.dialect.PostgreSQLDialect
- key: SPRING_DATASOURCE_URL
sync: false
healthCheckPath: /actuator/health
# ── Relevance Engine ──────────────────────────────────────────────────────
- type: web
name: notifyhub-relevance
region: oregon
plan: free
env: docker
rootDir: notifyhub-platform
dockerfilePath: notifyhub-relevance-engine/Dockerfile
envVars:
- key: SERVER_PORT
value: "8080"
- key: SPRING_KAFKA_BOOTSTRAP_SERVERS
value: pkc-oxqxx9.us-east-1.aws.confluent.cloud:9092
- key: KAFKA_SECURITY_PROTOCOL
value: SASL_SSL
- key: KAFKA_SASL_MECHANISM
value: PLAIN
- key: KAFKA_SASL_JAAS_CONFIG
sync: false
healthCheckPath: /actuator/health
# ── Dispatch Service ──────────────────────────────────────────────────────
- type: web
name: notifyhub-dispatch
region: oregon
plan: free
env: docker
rootDir: notifyhub-platform
dockerfilePath: notifyhub-dispatch-service/Dockerfile
envVars:
- key: SERVER_PORT
value: "8080"
- key: SPRING_KAFKA_BOOTSTRAP_SERVERS
value: pkc-oxqxx9.us-east-1.aws.confluent.cloud:9092
- key: KAFKA_SECURITY_PROTOCOL
value: SASL_SSL
- key: KAFKA_SASL_MECHANISM
value: PLAIN
- key: KAFKA_SASL_JAAS_CONFIG
sync: false
healthCheckPath: /actuator/health
# ── PWA Static Site ───────────────────────────────────────────────────────
- type: web
name: notifyhub-pwa
env: static
rootDir: notifyhub-health-pwa
staticPublishPath: .
buildCommand: echo "ready"
databases:
- name: notifyhub-db
region: oregon
plan: free
databaseName: notifyhub
user: notifyhub_user