Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for Credential (0.2 sec)

  1. pkg/config/security/security.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: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cmd/sts-handlers_test.go

    		}
    
    		// Retrieve the STS account's credential object.
    		u, ok := globalIAMSys.GetUser(ctx, value.AccessKeyID)
    		if !ok {
    			c.Fatalf("Expected to find user %s", value.AccessKeyID)
    		}
    
    		if u.Credentials.AccessKey != value.AccessKeyID {
    			c.Fatalf("Expected access key %s, got %s", value.AccessKeyID, u.Credentials.AccessKey)
    		}
    
    		// Retrieve the credential's claims.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Updated an audit annotation key used by the `…/serviceaccounts/<name>/token` resource handler.
      The annotation used to persist the issued credential identifier is now `authentication.kubernetes.io/issued-credential-id`. ([#123098](https://github.com/kubernetes/kubernetes/pull/123098), [@munnerz](https://github.com/munnerz)) [SIG Auth]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

          statusPort: 15020
    
          # Specify which tracer to use. One of: zipkin, lightstep, datadog, stackdriver, none.
          # If using stackdriver tracer outside GCP, set env GOOGLE_APPLICATION_CREDENTIALS to the GCP credential file.
          tracer: "none"
    
        proxy_init:
          # Base name for the proxy_init container, used to configure iptables.
          image: proxyv2
    
        # configure remote pilot and istiod service and endpoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. cmd/sts-handlers.go

    		return auth.Credentials{}, s3Err
    	}
    
    	// Temporary credentials or Service accounts cannot generate further temporary credentials.
    	if user.IsTemp() || user.IsServiceAccount() {
    		return auth.Credentials{}, ErrAccessDenied
    	}
    
    	// Session tokens are not allowed in STS AssumeRole requests.
    	if getSessionToken(r) != "" {
    		return auth.Credentials{}, ErrAccessDenied
    	}
    
    	return user, ErrNone
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

          statusPort: 15020
          # Specify which tracer to use. One of: zipkin, lightstep, datadog, stackdriver, none.
          # If using stackdriver tracer outside GCP, set env GOOGLE_APPLICATION_CREDENTIALS to the GCP credential file.
          tracer: "none"
        proxy_init:
          # Base name for the proxy_init container, used to configure iptables.
          image: proxyv2
        # configure remote pilot and istiod service and endpoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top