Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for dockerConfig (0.21 sec)

  1. pkg/credentialprovider/keyring_test.go

    	}
    
    	grace := AuthConfig{
    		Username: "grace",
    		Password: "squash", // Fake value for testing.
    		Email:    "******@****.***",
    	}
    
    	dk := &BasicDockerKeyring{}
    	dk.Add(DockerConfig{
    		"bar.example.com/pong": DockerConfigEntry{
    			Username: grace.Username,
    			Password: grace.Password,
    			Email:    grace.Email,
    		},
    		"bar.example.com": DockerConfigEntry{
    			Username: ada.Username,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  2. pkg/credentialprovider/keyring.go

    	// RegistryToken is a bearer token to be sent to a registry
    	RegistryToken string `json:"registrytoken,omitempty"`
    }
    
    // Add add some docker config in basic docker keyring
    func (dk *BasicDockerKeyring) Add(cfg DockerConfig) {
    	if dk.index == nil {
    		dk.index = make([]string, 0)
    		dk.creds = make(map[string][]AuthConfig)
    	}
    	for loc, ident := range cfg {
    		creds := AuthConfig{
    			Username: ident.Username,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/flags.go

    		"Common image pull policy to use when deploying container images")
    	flag.StringVar(&settingsFromCommandLine.Image.PullSecret, "istio.test.imagePullSecret", settingsFromCommandLine.Image.PullSecret,
    		"Path to a file containing a DockerConfig secret use for test apps. This will be pushed to all created namespaces."+
    			"Secret should already exist when used with istio.test.stableNamespaces.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. pkg/wasm/imagefetcher.go

    	fetchOpts := make([]remote.Option, 0, 2)
    	// TODO(mathetake): have "Anonymous" option?
    	if opt.useDefaultKeyChain() {
    		// Note that default key chain reads the docker config from DOCKER_CONFIG
    		// so must set the envvar when reaching this branch is expected.
    		fetchOpts = append(fetchOpts, remote.WithAuthFromKeychain(authn.DefaultKeychain))
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top