Skip to content

Commit 45fc5ed

Browse files
committedJan 14, 2025··
bake: infer git auth token from remote files to build request
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
1 parent 16edf5d commit 45fc5ed

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed
 

‎bake/bake.go

+27-1
Original file line numberDiff line numberDiff line change
@@ -1179,6 +1179,16 @@ func updateContext(t *build.Inputs, inp *Input) {
11791179
t.ContextState = &st
11801180
}
11811181

1182+
func isRemoteContext(t build.Inputs, inp *Input) bool {
1183+
if build.IsRemoteURL(t.ContextPath) {
1184+
return true
1185+
}
1186+
if inp != nil && build.IsRemoteURL(inp.URL) && !strings.HasPrefix(t.ContextPath, "cwd://") {
1187+
return true
1188+
}
1189+
return false
1190+
}
1191+
11821192
func collectLocalPaths(t build.Inputs) []string {
11831193
var out []string
11841194
if t.ContextState == nil {
@@ -1338,7 +1348,23 @@ func toBuildOpt(t *Target, inp *Input) (*build.Options, error) {
13381348
}
13391349
bo.Platforms = platforms
13401350

1341-
bo.SecretSpecs = t.Secrets.ToPB()
1351+
secrets := t.Secrets
1352+
if isRemoteContext(bi, inp) {
1353+
if _, ok := os.LookupEnv("BUILDX_BAKE_GIT_AUTH_TOKEN"); ok {
1354+
secrets = append(secrets, &buildflags.Secret{
1355+
ID: llb.GitAuthTokenKey,
1356+
Env: "BUILDX_BAKE_GIT_AUTH_TOKEN",
1357+
})
1358+
}
1359+
if _, ok := os.LookupEnv("BUILDX_BAKE_GIT_AUTH_HEADER"); ok {
1360+
secrets = append(secrets, &buildflags.Secret{
1361+
ID: llb.GitAuthHeaderKey,
1362+
Env: "BUILDX_BAKE_GIT_AUTH_HEADER",
1363+
})
1364+
}
1365+
}
1366+
secrets = secrets.Normalize()
1367+
bo.SecretSpecs = secrets.ToPB()
13421368
secretAttachment, err := controllerapi.CreateSecrets(bo.SecretSpecs)
13431369
if err != nil {
13441370
return nil, err

0 commit comments

Comments
 (0)
Please sign in to comment.