Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 201 for audiences (0.48 sec)

  1. pkg/generated/openapi/zz_generated.openapi.go

    							Type:  ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    		token, err := t.Clusters().Default().Kube().CoreV1().ServiceAccounts(apps.Namespace.Name()).CreateToken(context.Background(), "default",
    			&authenticationv1.TokenRequest{
    				Spec: authenticationv1.TokenRequestSpec{
    					Audiences:         []string{"kubernetes.default.svc"},
    					ExpirationSeconds: ptr.Of(int64(600)),
    				},
    			}, metav1.CreateOptions{})
    		assert.NoError(t, err)
    
    		for _, src := range svcs {
    			src := src
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                      selected workloads' proxy.
                    items:
                      properties:
                        audiences:
                          description: The list of JWT [audiences](https://tools.ietf.org/html/rfc7519#section-4.1.3)
                            that are allowed to access.
                          items:
                            minLength: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                      selected workloads' proxy.
                    items:
                      properties:
                        audiences:
                          description: The list of JWT [audiences](https://tools.ietf.org/html/rfc7519#section-4.1.3)
                            that are allowed to access.
                          items:
                            minLength: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	if rule == nil {
    		return nil
    	}
    	if len(rule.Issuer) == 0 {
    		errs = multierror.Append(errs, errors.New("issuer must be set"))
    	}
    	for _, audience := range rule.Audiences {
    		if len(audience) == 0 {
    			errs = multierror.Append(errs, errors.New("audience must be non-empty string"))
    		}
    	}
    
    	if len(rule.JwksUri) != 0 {
    		if _, err := security.ParseJwksURI(rule.JwksUri); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.25.md

    ## Changes by Kind
    
    ### Deprecation
    
    - API server's deprecated `--service-account-api-audiences` flag was removed.  Use `--api-audiences` instead. ([#108624](https://github.com/kubernetes/kubernetes/pull/108624), [@ialidzhikov](https://github.com/ialidzhikov))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. cmd/jwt.go

    func newCachedAuthToken() func(audience string) string {
    	fn := func(accessKey, secretKey, audience string) (s string, err error) {
    		k := cacheKey{accessKey: accessKey, secretKey: secretKey, audience: audience}
    
    		var ok bool
    		s, ok = cacheLRU.Get(k)
    		if !ok {
    			s, err = authenticateNode(accessKey, secretKey, audience)
    			if err != nil {
    				return "", err
    			}
    			cacheLRU.Add(k, s)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

          "properties": {
            "audiences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. pkg/serviceaccount/claims_test.go

    	}{
    		{
    			// pod and secret
    			sa:  sa,
    			pod: pod,
    			sec: sec,
    			// really fast
    			exp: 0,
    			// nil audience
    			aud: nil,
    			err: "internal error, token can only be bound to one object type",
    		},
    		{
    			// pod
    			sa:  sa,
    			pod: pod,
    			// empty audience
    			aud: []string{},
    			exp: 100,
    
    			sc: &jwt.Claims{
    				Subject:   "system:serviceaccount:myns:mysvcacct",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pkg/registry/storage/csidriver/strategy_test.go

    			wantGeneration: 1,
    		},
    		{
    			name:                  "service account token feature enabled, before: none, update: audience=gcp",
    			old:                   driverWithNothing,
    			update:                driverWithServiceAccountTokenGCP,
    			wantTokenRequests:     []storage.TokenRequest{{Audience: gcp}},
    			wantRequiresRepublish: &enabled,
    			wantGeneration:        1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top