Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for mysvcacct (0.09 sec)

  1. plugin/pkg/auth/authorizer/node/graph.go

    // It sets up edges for the following relationships (which are immutable for a pod once bound to a node):
    //
    //	pod       -> node
    //	secret    -> pod
    //	configmap -> pod
    //	pvc       -> pod
    //	svcacct   -> pod
    func (g *Graph) AddPod(pod *corev1.Pod) {
    	start := time.Now()
    	defer func() {
    		graphActionsDuration.WithLabelValues("AddPod").Observe(time.Since(start).Seconds())
    	}()
    	g.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    	svcAdmClient, err := madmin.NewWithOptions(s.endpoint, &madmin.Options{
    		Creds:  credentials.NewStaticV4(cr.AccessKey, cr.SecretKey, ""),
    		Secure: s.secure,
    	})
    	if err != nil {
    		c.Fatalf("Err creating svcacct admin client: %v", err)
    	}
    	svcAdmClient.SetCustomTransport(s.TestSuiteCommon.client.Transport)
    
    	// Attempt to update the policy on the service account.
    	err = svcAdmClient.UpdateServiceAccount(ctx, cr.AccessKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top