Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 185 for Credential (0.23 sec)

  1. cmd/auth-handler.go

    }
    
    func validateAdminSignature(ctx context.Context, r *http.Request, region string) (auth.Credentials, bool, APIErrorCode) {
    	var cred auth.Credentials
    	var owner bool
    	s3Err := ErrAccessDenied
    	if _, ok := r.Header[xhttp.AmzContentSha256]; ok &&
    		getRequestAuthType(r) == authTypeSigned {
    
    		// Get credential information from the request.
    		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	}
    	bootstrapKubeConfigFile := filepath.Join(data.KubeConfigDir(), kubeadmconstants.KubeletBootstrapKubeConfigFileName)
    
    	// Deletes the bootstrapKubeConfigFile, so the credential used for TLS bootstrap is removed from disk
    	defer os.Remove(bootstrapKubeConfigFile)
    
    	// Write the bootstrap kubelet config file or the TLS-Bootstrapped kubelet config file down to disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

            type: "[]string"
          - name: namespace
            type: string
    
      - name: "InvalidGatewayCredential"
        code: IST0161
        level: Error
        description: "The credential provided for the Gateway resource is invalid"
        template: "The credential referenced by the Gateway %s in namespace %s is invalid, which can cause the traffic not to work as expected."
        args:
          - name: gatewayName
            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. internal/http/headers.go

    	AmzAlgorithm            = "X-Amz-Algorithm"
    	AmzExpires              = "X-Amz-Expires"
    	AmzSignedHeaders        = "X-Amz-SignedHeaders"
    	AmzSignature            = "X-Amz-Signature"
    	AmzCredential           = "X-Amz-Credential"
    	AmzSecurityToken        = "X-Amz-Security-Token"
    	AmzDecodedContentLength = "X-Amz-Decoded-Content-Length"
    	AmzTrailer              = "X-Amz-Trailer"
    	AmzMaxParts             = "X-Amz-Max-Parts"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. cmd/postpolicyform.go

    	"$expires":                 true,
    	"$key":                     true,
    	"$success_action_redirect": true,
    	"$redirect":                true,
    	"$success_action_status":   true,
    	"$x-amz-algorithm":         false,
    	"$x-amz-credential":        false,
    	"$x-amz-date":              false,
    }
    
    var postPolicyIgnoreKeys = map[string]bool{
    	"Policy":              true,
    	xhttp.AmzSignature:    true,
    	xhttp.ContentEncoding: true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/list.md

    | `minio_cluster_replication_credential_errors`              | (_Site Replication Only_) Total number of replication credential errors since server start               |
    | `minio_cluster_replication_proxied_get_requests_total` | (_Site Replication Only_)Number of GET requests proxied to replication target                          |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top