-
Notifications
You must be signed in to change notification settings - Fork 8
/
blueprint.cue
63 lines (59 loc) · 1.08 KB
/
blueprint.cue
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
version: "1.0"
global: {
ci: {
local: [
"^check(-.*)?$",
"^build(-.*)?$",
"^package(-.*)?$",
"^test(-.*)?$",
]
registries: [
ci.providers.aws.registry,
]
providers: {
aws: {
region: "eu-central-1"
registry: "332405224602.dkr.ecr.eu-central-1.amazonaws.com"
role: "arn:aws:iam::332405224602:role/ci"
}
docker: credentials: {
provider: "aws"
path: "global/ci/docker"
}
git: credentials: {
provider: "aws"
path: "global/ci/deploy"
}
earthly: {
credentials: {
provider: "aws"
path: "global/ci/earthly"
}
org: "Catalyst"
satellite: "ci"
version: "0.8.15"
}
github: registry: "ghcr.io"
}
secrets: [
{
name: "GITHUB_TOKEN"
optional: true
provider: "env"
path: "GITHUB_TOKEN"
},
]
}
deployment: {
registry: ci.providers.aws.registry
repo: {
url: "https://github.com/input-output-hk/catalyst-world"
ref: "master"
}
root: "k8s"
}
repo: {
defaultBranch: "main"
name: "input-output-hk/catalyst-voices"
}
}