Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for dockerConfig (0.14 sec)

  1. pkg/credentialprovider/plugin/plugin.go

    	default:
    		klog.Errorf("credential provider plugin did not return a valid cacheKeyType: %q", cacheKeyType)
    		return credentialprovider.DockerConfig{}
    	}
    
    	dockerConfig := make(credentialprovider.DockerConfig, len(response.Auth))
    	for matchImage, authConfig := range response.Auth {
    		dockerConfig[matchImage] = credentialprovider.DockerConfigEntry{
    			Username: authConfig.Username,
    			Password: authConfig.Password,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    		builtInDockerConfig credentialprovider.DockerConfig
    		expectedAuth        *runtimeapi.AuthConfig
    	}{
    		"no matching secrets": {
    			"ubuntu",
    			[]v1.Secret{},
    			credentialprovider.DockerConfig(map[string]credentialprovider.DockerConfigEntry{}),
    			nil,
    		},
    		"default keyring secrets": {
    			"ubuntu",
    			[]v1.Secret{},
    			credentialprovider.DockerConfig(map[string]credentialprovider.DockerConfigEntry{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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