Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 310 for Credential (0.13 sec)

  1. ci/devinfra/docker_windows/Dockerfile

        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";${pkg_extracted_path}\bin\", \"Machine\"); \
        $env:PATH = [Environment]::GetEnvironmentVariable('PATH', 'Machine'); \
        gcloud components install docker-credential-gcr kubectl gsutil;
    
    # Install cygwin and packages
    # Running a seperate ps1 file since when running inside a Dockerfile, it does
    # not work.
    COPY install/install_cygwin.ps1 c:/
    RUN c:/install_cygwin.ps1; \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    	}
    
    	credentialSocketExists, err := checkSocket(context.TODO(), security.CredentialNameSocketPath)
    	if err != nil {
    		return nil, fmt.Errorf("failed to check credential SDS socket: %v", err)
    	}
    	if credentialSocketExists {
    		log.Info("Credential SDS socket found")
    	}
    
    	return bootstrap.GetNodeMetaData(bootstrap.MetadataOptions{
    		ID:                          a.cfg.ServiceNode,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. go.mod

    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
    	github.com/docker/distribution v2.8.3+incompatible // indirect
    	github.com/docker/docker v26.0.2+incompatible // indirect
    	github.com/docker/docker-credential-helpers v0.8.1 // indirect
    	github.com/emicklei/go-restful/v3 v3.12.0 // indirect
    	github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect
    	github.com/evanphx/json-patch v5.9.0+incompatible // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/model/model.go

    	attrRequestAudiences = "request.auth.audiences"      // intended audience(s) for this authentication information.
    	attrRequestPresenter = "request.auth.presenter"      // authorized presenter of the credential.
    	attrRequestClaims    = "request.auth.claims"         // claim name is surrounded by brackets, e.g. "request.auth.claims[iss]".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. pkg/wasm/imagefetcher.go

    	if err != nil {
    		return nil, fmt.Errorf("could not extract wasm binary: %v", err)
    	}
    	return ret, nil
    }
    
    type wasmKeyChain struct {
    	data []byte
    }
    
    // Resolve an image reference to a credential.
    // The function code is borrowed from https://github.com/google/go-containerregistry/blob/v0.8.0/pkg/authn/keychain.go#L65,
    // by making it take dockerconfigjson directly as bytes instead of reading from files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. pilot/pkg/credentials/kube/secrets_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			dockerCred, err := sc.GetDockerCredential(tt.name, tt.namespace)
    			if tt.expectedDockerCred != "" && tt.expectedDockerCred != string(dockerCred) {
    				t.Errorf("got docker credential %q, want %q", string(dockerCred), tt.expectedDockerCred)
    			}
    			if tt.expectedDockerError != "" && tt.expectedDockerError != errString(err) {
    				t.Errorf("got docker err %q, wanted %q", errString(err), tt.expectedDockerError)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. pkg/credentialprovider/keyring_test.go

    		t.Errorf("Error processing json blob %q, %v", sampleDockerConfig, err)
    	} else {
    		keyring.Add(cfg)
    	}
    
    	val, ok := keyring.Lookup("world.mesos.org/foo/bar")
    	if ok {
    		t.Errorf("Found unexpected credential: %+v", val)
    	}
    }
    
    func TestKeyringHitWithUnqualifiedDockerHub(t *testing.T) {
    	url := defaultRegistryKey
    	email := "******@****.***"
    	username := "foo"
    	password := "bar" // Fake value for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. docs/sts/ldap.md

    - find accounts (user DNs) that have been removed; any active STS credentials or MinIO service accounts belonging to these users are purged.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	// InvalidGatewayCredential defines a diag.MessageType for message "InvalidGatewayCredential".
    	// Description: The credential provided for the Gateway resource is invalid
    	InvalidGatewayCredential = diag.NewMessageType(diag.Error, "IST0161", "The credential referenced by the Gateway %s in namespace %s is invalid, which can cause the traffic not to work as expected.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-kubeapiserver.sh

          exit 1
      fi
    
      if [[ -z "${ETCD_SERVERS:-}" ]]; then
        params_ref+=" --etcd-servers-overrides=${ETCD_SERVERS_OVERRIDES:-/events#http://127.0.0.1:4002}"
      elif [[ -n "${ETCD_SERVERS_OVERRIDES:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top