Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for service_account (0.42 sec)

  1. pkg/workloadapi/workload.pb.go

    	// TrustDomain of the workload. May be elided if this is the mesh wide default (typically cluster.local)
    	TrustDomain string `protobuf:"bytes,6,opt,name=trust_domain,json=trustDomain,proto3" json:"trust_domain,omitempty"`
    	// ServiceAccount of the workload. May be elided if this is "default"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    	cache := store.rlock()
    	defer store.runlock()
    
    	var serviceAccounts []auth.Credentials
    	for _, u := range cache.iamUsersMap {
    		v := u.Credentials
    		if accessKey != "" && v.ParentUser == accessKey {
    			if v.IsServiceAccount() {
    				// Hide secret key & session key here
    				v.SecretKey = ""
    				v.SessionToken = ""
    				serviceAccounts = append(serviceAccounts, v)
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Allow creating ServiceAccount tokens bound to Node objects.
      This allows users to bind a service account token's validity to a named Node object, similar to Pod bound tokens.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    			})
    		}
    	})
    }
    
    func TestAPIServer(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		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"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    	if err != nil {
    		c.Fatalf("Unable to list access keys: %v", err)
    	}
    
    	epochTime := time.Unix(0, 0).UTC()
    	expectedAccKeys := madmin.ListAccessKeysLDAPResp{
    		ServiceAccounts: []madmin.ServiceAccountInfo{
    			{
    				AccessKey:  "u4ccRswj62HV3Ifwima7",
    				Expiration: &epochTime,
    			},
    		},
    	}
    
    	if !reflect.DeepEqual(expectedAccKeys, res) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top