Skip to content

Commit d07577b

Browse files
committedJun 16, 2022
add secrets template
Signed-off-by: Kent Rancourt <[email protected]>
1 parent 9aea0b9 commit d07577b

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed
 

‎.brigade/secrets-template.yaml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
## We ALWAYS log into Docker Hub to avoid being rate limited on pulls in FROM
2+
## directives of our Dockerfiles.
3+
dockerhubUsername: brigadecoreci
4+
dockerhubPassword: "<Placeholder>"
5+
6+
## If unstableImageRegistry is unspecified, Docker Hub will be used.
7+
unstableImageRegistry: unstablebrigade.azurecr.io
8+
9+
## unstableImageRegistryOrg is optional if the unstable image registry does not
10+
## require it. Docker Hub, for instance DOES.
11+
# unstableImageRegistryOrg: ""
12+
13+
## unstableImageRegistryUsername and unstableImageRegistryPassword are optional
14+
## if the unstable image registry is Docker Hub (which we already
15+
## unconditionally login into) or if the unstable image registry is a private
16+
## one that doesn't require authentication.
17+
unstableImageRegistryUsername: unstablebrigade
18+
unstableImageRegistryPassword: "<Placeholder>"
19+
20+
## If stableImageRegistry is unspecified, Docker Hub will be used.
21+
# stableImageRegistry: ""
22+
23+
## stableImageRegistryOrg is optional if the stable image registry does not
24+
## require it. Docker Hub, for instance, DOES.
25+
stableImageRegistryOrg: brigadecore
26+
27+
## The stable image registry should always be a public registry, so we assume we
28+
## MUST authenticate.
29+
stableImageRegistryUsername: brigadecoreci
30+
stableImageRegistryPassword: "<Placeholder>"
31+
32+
## Base64-encoded key used for signing images pushed to the stable registry.
33+
## This key belongs to the same user specified by stableImageRegistryUsername.
34+
imageSigningKeyHash: 2f41aa6fd9326a09eea76bfce528908b271a82f2c387a26fca2d3f3925b9b2e2
35+
base64ImageSigningKey: "<Placeholder>"
36+
imageSigningKeyPassphrase: "<Placeholder>"
37+
38+
helmRegistry: ghcr.io
39+
40+
## helmOrg is optional if the chart registry does not require it.
41+
## ghcr.io, for instance, DOES.
42+
helmOrg: brigadecore
43+
44+
## The chart registry should always be a public registry, so we assume we MUST
45+
## authenticate.
46+
helmUsername: "<Placeholder>"
47+
helmPassword: "<Placeholder>"
48+
49+
## The following are required for publishing the SBOM to the GitHub releases
50+
## page.
51+
githubOrg: brigadecore
52+
githubRepo: brigade-dockerhub-gateway
53+
githubToken: "<Placeholder>"
54+
55+
codecovToken: "<Placeholder>"

0 commit comments

Comments
 (0)
Please sign in to comment.