Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 345 for serviceAccount (0.42 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.yaml

    apiVersion: v1
    automountServiceAccountToken: true
    imagePullSecrets:
    - name: nameValue
    kind: ServiceAccount
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ServiceAccount.yaml

    apiVersion: v1
    automountServiceAccountToken: true
    imagePullSecrets:
    - name: nameValue
    kind: ServiceAccount
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ServiceAccount.json

    {
      "kind": "ServiceAccount",
      "apiVersion": "v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ServiceAccount.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 508 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.ServiceAccount.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 508 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ServiceAccount.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 508 bytes
    - Viewed (0)
  7. pkg/controller/serviceaccount/serviceaccounts_controller_test.go

    	}{
    		"new active namespace missing serviceaccounts": {
    			ExistingServiceAccounts:      []*v1.ServiceAccount{},
    			AddedNamespace:               activeNS,
    			ExpectCreatedServiceAccounts: sets.NewString(defaultName, managedName).List(),
    		},
    		"new active namespace missing serviceaccount": {
    			ExistingServiceAccounts:      []*v1.ServiceAccount{managedServiceAccount},
    			AddedNamespace:               activeNS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 00:46:06 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards_test.go

    				{Address: "10.172.0.2", ServiceAccount: "sa-vm1"},
    			},
    			expect: false,
    		},
    		{
    			name:     "deleted one endpoint with unique sa",
    			shardKey: c1Key,
    			endpoints: []*IstioEndpoint{
    				{Address: "10.172.0.1", ServiceAccount: "sa1"},
    			},
    			expect: true,
    		},
    		{
    			name:     "deleted one endpoint with duplicate sa",
    			shardKey: c1Key,
    			endpoints: []*IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 15:48:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/registry/core/serviceaccount/storage/storage_test.go

    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	serviceAccount := validNewServiceAccount("foo")
    	serviceAccount.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo-"}
    	test.TestCreate(
    		// valid
    		serviceAccount,
    		// invalid
    		&api.ServiceAccount{},
    		&api.ServiceAccount{
    			ObjectMeta: metav1.ObjectMeta{Name: "name with spaces"},
    		},
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pkg/registry/core/serviceaccount/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &api.ServiceAccountList{} },
    		DefaultQualifiedResource:  api.Resource("serviceaccounts"),
    		SingularQualifiedResource: api.Resource("serviceaccount"),
    
    		CreateStrategy:      serviceaccount.Strategy,
    		UpdateStrategy:      serviceaccount.Strategy,
    		DeleteStrategy:      serviceaccount.Strategy,
    		ReturnDeletedObject: true,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top