Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 334 for audiences (0.14 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    				tr := action.(clitesting.CreateAction).GetObject().(*authenticationv1.TokenRequest)
    				scheme.Default(tr)
    				if len(tr.Spec.Audiences) == 0 {
    					tr.Spec.Audiences = []string{"api"}
    				}
    				tr.Status.Token = fmt.Sprintf("%v:%v:%d:%v", action.GetNamespace(), testAccount, *tr.Spec.ExpirationSeconds, tr.Spec.Audiences)
    				tr.Status.ExpirationTimestamp = meta.NewTime(time.Unix(1, 1))
    				return true, tr, nil
    			}))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/model/model.go

    	attrRequestPrincipal = "request.auth.principal"      // authenticated principal of the request.
    	attrRequestAudiences = "request.auth.audiences"      // intended audience(s) for this authentication information.
    	attrRequestPresenter = "request.auth.presenter"      // authorized presenter of the credential.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pkg/kube/client.go

    		})
    	}
    	return g.Wait()
    }
    
    func (c *client) CreatePerRPCCredentials(_ context.Context, tokenNamespace, tokenServiceAccount string, audiences []string,
    	expirationSeconds int64,
    ) (credentials.PerRPCCredentials, error) {
    	return NewRPCCredentials(c, tokenNamespace, tokenServiceAccount, audiences, expirationSeconds, 60)
    }
    
    func (c *client) UtilFactory() PartialFactory {
    	return c.clientFactory
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Required to be unique across all JWT authenticators.
    	// Note that egress selection configuration is not used for this network connection.
    	// +optional
    	DiscoveryURL         string
    	CertificateAuthority string
    	Audiences            []string
    	AudienceMatchPolicy  AudienceMatchPolicyType
    }
    
    // AudienceMatchPolicyType is a set of valid values for Issuer.AudienceMatchPolicy
    type AudienceMatchPolicyType string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. pkg/serviceaccount/jwt_test.go

    			Client:      nil,
    			Keys:        []interface{}{getPublicKey(ecdsaPublicKey)},
    			ExpectedErr: false,
    			ExpectedOK:  false,
    		},
    	}
    
    	for k, tc := range testCases {
    		auds := authenticator.Audiences{"api"}
    		getter := serviceaccountcontroller.NewGetterFromClient(
    			tc.Client,
    			v1listers.NewSecretLister(newIndexer(func(namespace, name string) (interface{}, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/istio_ca.go

    	// This value can also be extracted from the mounted token
    	trustedIssuer = env.Register("TOKEN_ISSUER", "",
    		"OIDC token issuer. If set, will be used to check the tokens.")
    
    	audience = env.Register("AUDIENCE", "",
    		"Expected audience in the tokens. ")
    
    	caRSAKeySize = env.Register("CITADEL_SELF_SIGNED_CA_RSA_KEY_SIZE", 2048,
    		"Specify the RSA key size to use for self-signed Istio CA certificates.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-kubeapiserver.sh

      fi
      if [[ -n "${SERVICE_CLUSTER_IP_RANGE:-}" ]]; then
        params+=" --service-cluster-ip-range=${SERVICE_CLUSTER_IP_RANGE}"
      fi
      params+=" --service-account-issuer=${SERVICEACCOUNT_ISSUER}"
      params+=" --api-audiences=${SERVICEACCOUNT_ISSUER}"
      params+=" --service-account-signing-key-file=${SERVICEACCOUNT_KEY_PATH}"
    
      local audit_policy_config_mount=""
      local audit_policy_config_volume=""
      local audit_webhook_config_mount=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. tests/integration/security/authz_test.go

    							allow:  false,
    						},
    						{
    							prefix: "[JWTWithAud]",
    							jwt:    jwt.TokenIssuer1WithAud,
    							path:   "/audiences",
    							allow:  true,
    						},
    						{
    							prefix: "[JWTWithAudList]",
    							jwt:    jwt.TokenIssuer1WithAudList,
    							path:   "/audiences",
    							allow:  true,
    						},
    					}
    					for _, c := range cases {
    						h := headers.New().WithAuthz(c.jwt).Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top