-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.sample
37 lines (37 loc) · 1.08 KB
/
config.json.sample
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
{
"name": "<name your build-box!>",
"mail": {
"sendgrid_token": "<sendgrid api token generated in panel>",
"from": "<mail address where mail will be from>",
"to": "<mail address to send completions and errors>",
"completions": true
},
"github": {
"repo": "manifest",
"branch": "master",
"build_file": "build.json",
"hook_secret": "<your secret set in github settings panel>",
"personal_token": "<a github personal oauth token from github settings panel>"
},
"public_registries": {
"quay.io": {
"username": "<your quay username>",
"password": "<your quay password>"
},
"hub.docker.com": {
"username": "<your docker hub username>",
"password": "<your docker hub password>"
}
},
"private_registries": {
"gcr.io" {
"namespace: "cloud project name",
"username": "_token",
"password": "<token generated from gcloud tool>",
},
"<aws docker registry id>.dkr.ecr.us-east-1.amazonaws.com": {
"username": "AWS",
"password": "<token from running aws cli command>"
}
}
}