Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for audiences (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.24.md

    - Only extend token lifetimes when `--service-account-extend-token-expiration` is true and the requested token audiences are empty or exactly match all values for `--api-audiences`. ([#105954](https://github.com/kubernetes/kubernetes/pull/105954), [@jyotimahapatra](https://github.com/jyotimahapatra))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.12.md

    - TokenRequest and TokenRequestProjection are now beta features. To enable these feature, the API server needs to be started with the `--service-account-issuer`, `--service-account-signing-key-file`, and `--service-account-api-audiences` flags.
    ([#67349](https://github.com/kubernetes/kubernetes/pull/67349), [@mikedanese](https://github.com/mikedanese))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

            "description": "TokenRequest contains parameters of a service account token.",
            "properties": {
              "audience": {
                "default": "",
                "description": "audience is the intended audience of the token in \"TokenRequestSpec\". It will default to the audiences of kube apiserver.",
                "type": "string"
              },
              "expirationSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

    // otherwise).
    message ServiceAccountTokenProjection {
      // audience is the intended audience of the token. A recipient of a token
      // must identify itself with an identifier specified in the audience of the
      // token, and otherwise should reject the token. The audience defaults to the
      // identifier of the apiserver.
      // +optional
      optional string audience = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    // otherwise).
    type ServiceAccountTokenProjection struct {
    	// Audience is the intended audience of the token. A recipient of a token
    	// must identify itself with an identifier specified in the audience of the
    	// token, and otherwise should reject the token. The audience defaults to the
    	// identifier of the apiserver.
    	Audience string
    	// ExpirationSeconds is the requested duration of validity of the service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"audience":          "audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    type ServiceAccountTokenProjection struct {
    	// audience is the intended audience of the token. A recipient of a token
    	// must identify itself with an identifier specified in the audience of the
    	// token, and otherwise should reject the token. The audience defaults to the
    	// identifier of the apiserver.
    	// +optional
    	Audience string `json:"audience,omitempty" protobuf:"bytes,1,rep,name=audience"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top