forked from render-examples/temporal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
91 lines (90 loc) · 1.88 KB
/
render.yaml
File metadata and controls
91 lines (90 loc) · 1.88 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
databases:
- name: temporal-db
databaseName: temporal
postgresMajorVersion: "13"
user: temporal
plan: free
region: oregon
services:
- name: temporal
type: pserv
autoDeploy: false
plan: starter
region: oregon
runtime: docker
image:
url: docker.io/temporalio/auto-setup:1.25.1
envVars:
- key: PORT
value: 7233
- key: DYNAMIC_CONFIG_FILE_PATH
value: /etc/temporal/dynamicconfig.yaml
- key: DB
value: postgres12
- key: DBNAME
fromDatabase:
name: temporal-db
property: database
- key: DB_PORT
fromDatabase:
name: temporal-db
property: port
- key: POSTGRES_USER
fromDatabase:
name: temporal-db
property: user
- key: POSTGRES_PWD
fromDatabase:
name: temporal-db
property: password
- key: POSTGRES_SEEDS
fromDatabase:
name: temporal-db
property: host
- name: temporal-admin-tools
type: pserv
autoDeploy: false
plan: starter
region: oregon
runtime: docker
image:
url: docker.io/temporalio/admin-tools:1.25.1-tctl-1.18.1-cli-1.1.0
- name: temporal-ui
type: pserv
autoDeploy: false
plan: starter
region: oregon
runtime: docker
image:
url: docker.io/temporalio/ui:2.26.2
envVars:
- key: PORT
value: 8088
- type: web
repo: https://github.com/render-examples/sample-temporal-app
name: app-workflow-trigger
plan: starter
region: oregon
runtime: go
buildCommand: go build start/main.go
startCommand: ./main
envVars:
- key: TEMPORAL_CLUSTER_HOST
fromService:
name: temporal
type: pserv
property: host
- type: worker
repo: https://github.com/render-examples/sample-temporal-app
name: app-worker
plan: starter
region: oregon
runtime: go
buildCommand: go build worker/main.go
startCommand: ./main
envVars:
- key: TEMPORAL_CLUSTER_HOST
fromService:
name: temporal
type: pserv
property: host