-
Notifications
You must be signed in to change notification settings - Fork 1
/
engine.ini
135 lines (111 loc) · 3.99 KB
/
engine.ini
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
## Train Release definition
## -- The train engines are fixed tagged releases which should explicity reference the digest of an image you want to include
## -- This ensures that the appropriate image is always tagged for a release
[engine:hamlet_train_release]
description = The engine definition for the train release
sources = train_engine
train_bash
train_core
train_plugin_aws
train_plugin_azure
parts = train_engine
train_bash
train_core
train_plugin_aws
train_plugin_azure
[engine_source:train_engine]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine
container_tag = sha256:24af138e6dd087724324c0195ef8a47fcf429769b908bff01d374c67b8fd3559
[engine_source:train_bash]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/executor-bash
container_tag = sha256:b1d73efbbd9c7e61ffeaa8ec00ef3e9c64fac2143b99efcc1026c4f67191177f
[engine_source:train_core]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine-core
container_tag = sha256:33ed91b5b09aadd5ec531d831e1c46825f07553fa25152348f646ce100d8a710
[engine_source:train_plugin_azure]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine-plugin-azure
container_tag = sha256:23de96de45b8d967fb0bd06e6eebcdb7bfa8b8970cec5fedfbe54fbc22224ed6
[engine_source:train_plugin_aws]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine-plugin-aws
container_tag = sha256:1ed2ee8f1c6c23d1bbf88a4bfe1ecba0977f1160a30337c5d65eba44dc31e5b7
[engine_part:train_engine]
type = engine
source_name = train_engine
[engine_part:train_bash]
type = executor-bash
source_name = train_bash
[engine_part:train_core]
type = bundled-wrapper
source_path = image
source_name = train_core
[engine_part:train_plugin_aws]
type = engine-plugin-aws
source_name = train_plugin_aws
[engine_part:train_plugin_azure]
type = engine-plugin-azure
source_name = train_plugin_azure
## Tram Release definition
## -- The tram release is a schedule combined build and test of the edge containers for each engine component
[engine:hamlet_tram_release]
description = The engine definition for the tram release
sources = tram_engine
tram_bash
tram_core
tram_plugin_aws
tram_plugin_azure
parts = tram_engine
tram_bash
tram_core
tram_plugin_aws
tram_plugin_azure
[engine_source:tram_engine]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine
container_tag = edge
[engine_source:tram_bash]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/executor-bash
container_tag = edge
[engine_source:tram_core]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine-core
container_tag = edge
[engine_source:tram_plugin_aws]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine-plugin-aws
container_tag = edge
[engine_source:tram_plugin_azure]
type = container
container_registry_url = https://ghcr.io
container_repository = hamlet-io/engine-plugin-azure
container_tag = edge
[engine_part:tram_engine]
type = engine
source_name = tram_engine
[engine_part:tram_bash]
type = executor-bash
source_name = tram_bash
[engine_part:tram_core]
type = bundled-wrapper
source_path = image
source_name = tram_core
[engine_part:tram_plugin_aws]
type = engine-plugin-aws
source_name = tram_plugin_aws
[engine_part:tram_plugin_azure]
type = engine-plugin-azure
source_name = tram_plugin_azure