-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.yaml
More file actions
46 lines (43 loc) · 1.23 KB
/
registry.yaml
File metadata and controls
46 lines (43 loc) · 1.23 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
# Stack Registry — maps repository names to their stack definition files.
# The EventListener CEL overlays and the generate-run.sh script both
# reference this to determine which stack a given repo belongs to.
#
# When onboarding a new app or stack:
# 1. Create a new stack YAML in stacks/
# 2. Add a versions.yaml entry for each app
# 3. Add the repo→stack mapping below
# 4. Update the CEL overlay in pipeline/triggers.yaml
repos:
# --- Stack One: 3-tier demo ---
demo-fe:
stack: stack-one.yaml
role: frontend
release-lifecycle-demo:
stack: stack-one.yaml
role: middleware
demo-api:
stack: stack-one.yaml
role: persistence
# --- Stack Two: Mixed-toolchain vendor integration ---
vendor-fe:
stack: stack-two-vendor.yaml
role: frontend
vendor-middleware:
stack: stack-two-vendor.yaml
role: middleware
vendor-adapter:
stack: stack-two-vendor.yaml
role: middleware-vendor
internal-api:
stack: stack-two-vendor.yaml
role: persistence
notifications-svc:
stack: stack-two-vendor.yaml
role: middleware
# --- Standalone apps ---
inventory-api:
stack: single-app.yaml
role: persistence
analytics-api:
stack: single-flask-app.yaml
role: persistence