Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for queueServiceAccountSync (0.18 sec)

  1. pkg/controller/serviceaccount/tokens_controller.go

    	e.serviceAccountSynced = serviceAccounts.Informer().HasSynced
    	serviceAccounts.Informer().AddEventHandlerWithResyncPeriod(
    		cache.ResourceEventHandlerFuncs{
    			AddFunc:    e.queueServiceAccountSync,
    			UpdateFunc: e.queueServiceAccountUpdateSync,
    			DeleteFunc: e.queueServiceAccountSync,
    		},
    		options.ServiceAccountResync,
    	)
    
    	secretCache := secrets.Informer().GetIndexer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. pkg/controller/serviceaccount/tokens_controller_test.go

    				controller.queueServiceAccountSync(tc.AddedServiceAccount)
    			}
    			if tc.UpdatedServiceAccount != nil {
    				serviceAccounts.Add(tc.UpdatedServiceAccount)
    				controller.queueServiceAccountUpdateSync(nil, tc.UpdatedServiceAccount)
    			}
    			if tc.DeletedServiceAccount != nil {
    				serviceAccounts.Delete(tc.DeletedServiceAccount)
    				controller.queueServiceAccountSync(tc.DeletedServiceAccount)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top