Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 457 for audiences (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	return map_StorageClassList
    }
    
    var map_TokenRequest = map[string]string{
    	"":                  "TokenRequest contains parameters of a service account token.",
    	"audience":          "audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	return map_StorageClassList
    }
    
    var map_TokenRequest = map[string]string{
    	"":                  "TokenRequest contains parameters of a service account token.",
    	"audience":          "audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  10. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top