mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	Tested with `kind` and GKE. Note: "nodes" shown in `docker buildx ls` are unrelated to Kubernetes "nodes". Probably buildx should come up with an alternative term. Usage: $ kind create cluster $ export KUBECONFIG="$(kind get kubeconfig-path --name="kind")" $ docker buildx create --driver kubernetes --driver-opt replicas=3 --use $ docker buildx build -t foo --load . `--load` loads the image into the local Docker. Driver opts: - `image=IMAGE` - Sets the container image to be used for running buildkit. - `namespace=NS` - Sets the Kubernetes namespace. Defaults to the current namespace. - `replicas=N` - Sets the number of `Pod` replicas. Defaults to 1. - `rootless=(true|false)` - Run the container as a non-root user without `securityContext.privileged`. Defaults to false. - `loadbalance=(sticky|random)` - Load-balancing strategy. If set to "sticky", the pod is chosen using the hash of the context path. Defaults to "sticky" Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2014 The Go Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a BSD-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package google
 | 
						|
 | 
						|
import (
 | 
						|
	"sort"
 | 
						|
	"strings"
 | 
						|
	"sync"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"golang.org/x/net/context"
 | 
						|
	"golang.org/x/oauth2"
 | 
						|
)
 | 
						|
 | 
						|
// appengineFlex is set at init time by appengineflex_hook.go. If true, we are on App Engine Flex.
 | 
						|
var appengineFlex bool
 | 
						|
 | 
						|
// Set at init time by appengine_hook.go. If nil, we're not on App Engine.
 | 
						|
var appengineTokenFunc func(c context.Context, scopes ...string) (token string, expiry time.Time, err error)
 | 
						|
 | 
						|
// Set at init time by appengine_hook.go. If nil, we're not on App Engine.
 | 
						|
var appengineAppIDFunc func(c context.Context) string
 | 
						|
 | 
						|
// AppEngineTokenSource returns a token source that fetches tokens
 | 
						|
// issued to the current App Engine application's service account.
 | 
						|
// If you are implementing a 3-legged OAuth 2.0 flow on App Engine
 | 
						|
// that involves user accounts, see oauth2.Config instead.
 | 
						|
//
 | 
						|
// The provided context must have come from appengine.NewContext.
 | 
						|
func AppEngineTokenSource(ctx context.Context, scope ...string) oauth2.TokenSource {
 | 
						|
	if appengineTokenFunc == nil {
 | 
						|
		panic("google: AppEngineTokenSource can only be used on App Engine.")
 | 
						|
	}
 | 
						|
	scopes := append([]string{}, scope...)
 | 
						|
	sort.Strings(scopes)
 | 
						|
	return &appEngineTokenSource{
 | 
						|
		ctx:    ctx,
 | 
						|
		scopes: scopes,
 | 
						|
		key:    strings.Join(scopes, " "),
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// aeTokens helps the fetched tokens to be reused until their expiration.
 | 
						|
var (
 | 
						|
	aeTokensMu sync.Mutex
 | 
						|
	aeTokens   = make(map[string]*tokenLock) // key is space-separated scopes
 | 
						|
)
 | 
						|
 | 
						|
type tokenLock struct {
 | 
						|
	mu sync.Mutex // guards t; held while fetching or updating t
 | 
						|
	t  *oauth2.Token
 | 
						|
}
 | 
						|
 | 
						|
type appEngineTokenSource struct {
 | 
						|
	ctx    context.Context
 | 
						|
	scopes []string
 | 
						|
	key    string // to aeTokens map; space-separated scopes
 | 
						|
}
 | 
						|
 | 
						|
func (ts *appEngineTokenSource) Token() (*oauth2.Token, error) {
 | 
						|
	if appengineTokenFunc == nil {
 | 
						|
		panic("google: AppEngineTokenSource can only be used on App Engine.")
 | 
						|
	}
 | 
						|
 | 
						|
	aeTokensMu.Lock()
 | 
						|
	tok, ok := aeTokens[ts.key]
 | 
						|
	if !ok {
 | 
						|
		tok = &tokenLock{}
 | 
						|
		aeTokens[ts.key] = tok
 | 
						|
	}
 | 
						|
	aeTokensMu.Unlock()
 | 
						|
 | 
						|
	tok.mu.Lock()
 | 
						|
	defer tok.mu.Unlock()
 | 
						|
	if tok.t.Valid() {
 | 
						|
		return tok.t, nil
 | 
						|
	}
 | 
						|
	access, exp, err := appengineTokenFunc(ts.ctx, ts.scopes...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	tok.t = &oauth2.Token{
 | 
						|
		AccessToken: access,
 | 
						|
		Expiry:      exp,
 | 
						|
	}
 | 
						|
	return tok.t, nil
 | 
						|
}
 |