Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for TokenRequestSpec (0.4 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// 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".
    	// It has the same default value of "ExpirationSeconds" in "TokenRequestSpec"
    	//
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. pkg/apis/storage/types.go

    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".
    	// It has the same default value of "ExpirationSeconds" in "TokenRequestSpec."
    	//
    	// +optional
    	ExpirationSeconds *int64
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	// 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".
    	// It has the same default value of "ExpirationSeconds" in "TokenRequestSpec".
    	//
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. pkg/volume/projected/projected.go

    			if len(tp.Audience) != 0 {
    				auds = []string{tp.Audience}
    			}
    			tr, err := s.plugin.getServiceAccountToken(s.pod.Namespace, s.pod.Spec.ServiceAccountName, &authenticationv1.TokenRequest{
    				Spec: authenticationv1.TokenRequestSpec{
    					Audiences:         auds,
    					ExpirationSeconds: tp.ExpirationSeconds,
    					BoundObjectRef: &authenticationv1.BoundObjectReference{
    						APIVersion: "v1",
    						Kind:       "Pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter.go

    		if audience == "" {
    			audiences = []string{}
    		}
    		tr, err := c.plugin.serviceAccountTokenGetter(c.pod.Namespace, c.pod.Spec.ServiceAccountName, &authenticationv1.TokenRequest{
    			Spec: authenticationv1.TokenRequestSpec{
    				Audiences:         audiences,
    				ExpirationSeconds: tokenRequest.ExpirationSeconds,
    				BoundObjectRef: &authenticationv1.BoundObjectReference{
    					APIVersion: "v1",
    					Kind:       "Pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  6. 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)
  7. plugin/pkg/admission/noderestriction/admission_test.go

    	eviction.Namespace = "ns"
    	return eviction
    }
    
    func makeTokenRequest(podname string, poduid types.UID) *authenticationapi.TokenRequest {
    	tr := &authenticationapi.TokenRequest{
    		Spec: authenticationapi.TokenRequestSpec{
    			Audiences: []string{"foo"},
    		},
    	}
    	if podname != "" {
    		tr.Spec.BoundObjectRef = &authenticationapi.BoundObjectReference{
    			Kind:       "Pod",
    			APIVersion: "v1",
    			Name:       podname,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    		svcs := apps.All
    		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 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "expirationSeconds": {
                "description": "expirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".",
                "format": "int64",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "expirationSeconds is the duration of validity of the token in \"TokenRequestSpec\". It has the same default value of \"ExpirationSeconds\" in \"TokenRequestSpec\".",
    							Type:        []string{"integer"},
    							Format:      "int64",
    						},
    					},
    				},
    				Required: []string{"audience"},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top