Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for Authenticators (0.3 sec)

  1. pkg/security/security.go

    }
    
    // Authenticator determines the caller identity based on request context.
    type Authenticator interface {
    	Authenticate(ctx AuthContext) (*Caller, error)
    	AuthenticatorType() string
    }
    
    // authenticationManager orchestrates all authenticators to perform authentication.
    type authenticationManager struct {
    	Authenticators []Authenticator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    )
    
    type caOptions struct {
    	ExternalCAType   ra.CaExternalType
    	ExternalCASigner string
    	// domain to use in SPIFFE identity URLs
    	TrustDomain      string
    	Namespace        string
    	Authenticators   []security.Authenticator
    	CertSignerDomain string
    }
    
    // Based on istio_ca main - removing creation of Secrets with private keys in all namespaces and install complexity.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. OWNERS_ALIASES

      # sig-auth subproject aliases
      sig-auth-audit-approvers:
        - sttts
        - tallclair
      sig-auth-audit-reviewers:
        - sttts
        - tallclair
      sig-auth-authenticators-approvers:
        - deads2k
        - liggitt
        - mikedanese
        - enj
      sig-auth-authenticators-reviewers:
        - deads2k
        - enj
        - liggitt
        - mikedanese
        - sttts
        - wojtek-t
        - aramase
      sig-auth-authorizers-approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1beta1/types_swagger_doc_generated.go

    	"token":     "Token is the opaque bearer token.",
    	"audiences": "Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

      // Token is the opaque bearer token.
      // +optional
      optional string token = 1;
    
      // Audiences is a list of the identifiers that the resource server presented
      // with the token identifies as. Audience-aware token authenticators will
      // verify that the token was intended for at least one of the audiences in
      // this list. If no audiences are provided, the audience will default to the
      // audience of the Kubernetes apiserver.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/discovery.go

    	adsClients      map[string]*Connection
    	adsClientsMutex sync.RWMutex
    
    	StatusReporter DistributionStatusCache
    
    	// Authenticators for XDS requests. Should be same/subset of the CA authenticators.
    	Authenticators []security.Authenticator
    
    	WorkloadEntryController *autoregistration.Controller
    
    	// serverReady indicates caches have been synced up and server is ready to process requests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

      // Token is the opaque bearer token.
      // +optional
      optional string token = 1;
    
      // Audiences is a list of the identifiers that the resource server presented
      // with the token identifies as. Audience-aware token authenticators will
      // verify that the token was intended for at least one of the audiences in
      // this list. If no audiences are provided, the audience will default to the
      // audience of the Kubernetes apiserver.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1beta1/types.go

    	// +optional
    	Token string `json:"token,omitempty" protobuf:"bytes,1,opt,name=token"`
    	// Audiences is a list of the identifiers that the resource server presented
    	// with the token identifies as. Audience-aware token authenticators will
    	// verify that the token was intended for at least one of the audiences in
    	// this list. If no audiences are provided, the audience will default to the
    	// audience of the Kubernetes apiserver.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Same value as the --oidc-issuer-url flag.
    	// Discovery information is fetched from "{url}/.well-known/openid-configuration" unless overridden by discoveryURL.
    	// Required to be unique across all JWT authenticators.
    	// Note that egress selection configuration is not used for this network connection.
    	// +required
    	URL string
    	// discoveryURL, if specified, overrides the URL used to fetch discovery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authentication/v1/generated.proto

      // +optional
      optional string token = 1;
    
      // Audiences is a list of the identifiers that the resource server presented
      // with the token identifies as. Audience-aware token authenticators will
      // verify that the token was intended for at least one of the audiences in
      // this list. If no audiences are provided, the audience will default to the
      // audience of the Kubernetes apiserver.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top