Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 457 for audiences (0.19 sec)

  1. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      repeated StorageClass items = 2;
    }
    
    // TokenRequest contains parameters of a service account token.
    message TokenRequest {
      // audience is the intended audience of the token in "TokenRequestSpec".
      // It will default to the audiences of kube apiserver.
      optional string audience = 1;
    
      // expirationSeconds is the duration of validity of the token in "TokenRequestSpec".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    		// ObjectMeta isn't required in real k8s, but needed for tests
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      serviceAccount,
    			Namespace: wg.Namespace,
    		},
    		Spec: authenticationv1.TokenRequestSpec{
    			Audiences:         []string{"istio-ca"},
    			ExpirationSeconds: &tokenDuration,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1beta1/types.go

    type VolumeLifecycleMode string
    
    // TokenRequest contains parameters of a service account token.
    type TokenRequest struct {
    	// audience is the intended audience of the token in "TokenRequestSpec".
    	// It will default to the audiences of kube apiserver.
    	Audience string `json:"audience" protobuf:"bytes,1,opt,name=audience"`
    
    	// expirationSeconds is the duration of validity of the token in "TokenRequestSpec".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	}
    	row.Cells = append(row.Cells, storageCapacity)
    
    	tokenRequests := "<unset>"
    	if obj.Spec.TokenRequests != nil {
    		audiences := []string{}
    		for _, t := range obj.Spec.TokenRequests {
    			audiences = append(audiences, t.Audience)
    		}
    		tokenRequests = strings.Join(audiences, ",")
    	}
    	requiresRepublish := false
    	if obj.Spec.RequiresRepublish != nil {
    		requiresRepublish = *obj.Spec.RequiresRepublish
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    type VolumeLifecycleMode string
    
    // TokenRequest contains parameters of a service account token.
    type TokenRequest struct {
    	// audience is the intended audience of the token in "TokenRequestSpec".
    	// It will default to the audiences of kube apiserver.
    	Audience string `json:"audience" protobuf:"bytes,1,opt,name=audience"`
    
    	// expirationSeconds is the duration of validity of the token in "TokenRequestSpec".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. pkg/apis/storage/types.go

    type VolumeLifecycleMode string
    
    // TokenRequest contains parameters of a service account token.
    type TokenRequest struct {
    	// Audience is the intended audience of the token in "TokenRequestSpec".
    	// It will default to the audiences of kube apiserver.
    	//
    	Audience string
    
    	// ExpirationSeconds is the duration of validity of the token in "TokenRequestSpec".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.30.md

    - Added audienceMatchPolicy field to AuthenticationConfiguration and support for configuring multiple audiences.
      The "audienceMatchPolicy" can be empty (or unset) when a single audience is specified in the "audiences" field.
      The "audienceMatchPolicy" must be set to "MatchAny" when multiple audiences are specified in the "audiences" field. ([#123165](https://github.com/kubernetes/kubernetes/pull/123165), [@aramase](https://github.com/aramase))
    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. CHANGELOG/CHANGELOG-1.13.md

    ## Deprecations
    
    - kube-apiserver
      - The `--service-account-api-audiences` flag is deprecated in favor of `--api-audiences`. The old flag is accepted with a warning but will be removed in a future release. ([#70105](https://github.com/kubernetes/kubernetes/pull/70105), [@mikedanese](https://github.com/mikedanese))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    	DisableHTTP2 bool
    }
    
    type AuthenticationInfo struct {
    	// APIAudiences is a list of identifier that the API identifies as. This is
    	// used by some authenticators to validate audience bound credentials.
    	APIAudiences authenticator.Audiences
    	// Authenticator determines which subject is making the request
    	Authenticator authenticator.Request
    
    	RequestHeaderConfig *authenticatorfactory.RequestHeaderConfig
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    	// JWTRule is from the JWT_RULE environment variable.
    	// An example of json string for JWTRule is:
    	// `{"issuer": "foo", "jwks_uri": "baz", "audiences": ["aud1", "aud2"]}`.
    	jwtRule := &v1beta1.JWTRule{}
    	err := json.Unmarshal([]byte(args.JwtRule), jwtRule)
    	if err != nil {
    		return nil, fmt.Errorf("failed to unmarshal JWT rule: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top