Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for nodeclient (0.36 sec)

  1. pkg/kubelet/cm/dra/plugin/client.go

    	conn, err := p.getOrCreateGRPCConn()
    	if err != nil {
    		return nil, err
    	}
    
    	ctx, cancel := context.WithTimeout(ctx, p.clientTimeout)
    	defer cancel()
    
    	nodeClient := drapb.NewNodeClient(conn)
    	response, err := nodeClient.NodePrepareResources(ctx, req)
    	logger.V(4).Info(log("done calling NodePrepareResources rpc"), "response", response, "err", err)
    	return response, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_client_test.go

    		client := &csiDriverClient{
    			driverName: "Fake Driver Name",
    			nodeV1ClientCreator: func(addr csiAddr, m *MetricsManager) (csipbv1.NodeClient, io.Closer, error) {
    				nodeClient := fake.NewNodeClient(false /* stagingCapable */)
    				nodeClient.SetNextError(tc.err)
    				nodeClient.SetNodeGetInfoResp(&csipbv1.NodeGetInfoResponse{
    					NodeId:            tc.expectedNodeID,
    					MaxVolumesPerNode: tc.expectedMaxVolumePerNode,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_metrics_test.go

    			driverName: "com.google.gcepd",
    			nodeV1ClientCreator: func(addr csiAddr, m *MetricsManager) (csipbv1.NodeClient, io.Closer, error) {
    				nodeClient := fake.NewNodeClientWithVolumeStats(true /* VolumeStatsCapable */)
    				fakeCloser := fake.NewCloser(t)
    				nodeClient.SetNodeVolumeStatsResp(getRawVolumeInfo())
    				return nodeClient, fakeCloser, nil
    			},
    		}
    		metrics, err := metricsGetter.GetMetrics()
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. pkg/volume/csi/fake/fake_client.go

    func NewNodeClient(stageUnstageSet bool) *NodeClient {
    	return &NodeClient{
    		nodePublishedVolumes: make(map[string]CSIVolume),
    		nodeStagedVolumes:    make(map[string]CSIVolume),
    		stageUnstageSet:      stageUnstageSet,
    		volumeStatsSet:       true,
    	}
    }
    
    func NewNodeClientWithExpansion(stageUnstageSet bool, expansionSet bool) *NodeClient {
    	return &NodeClient{
    		nodePublishedVolumes: make(map[string]CSIVolume),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 16K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_client.go

    // This is the default implementation for the nodeV1ClientCreator, used in
    // newCsiDriverClient.
    func newV1NodeClient(addr csiAddr, metricsManager *MetricsManager) (nodeClient csipbv1.NodeClient, closer io.Closer, err error) {
    	var conn *grpc.ClientConn
    	conn, err = newGrpcConn(addr, metricsManager)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	nodeClient = csipbv1.NewNodeClient(conn)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block_test.go

    	pubs := csiUnmapper.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodePublishedVolumes()
    	if _, ok := pubs[csiUnmapper.volumeID]; ok {
    		t.Error("csi server may not have received NodeUnpublishVolume call")
    	}
    
    	// ensure csi client call and node unstaged
    	vols := csiUnmapper.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodeStagedVolumes()
    	if _, ok := vols[csiUnmapper.volumeID]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. cluster/addons/rbac/kubelet-cert-rotation/kubelet-certificate-management.yaml

    metadata:
      name: gce:beta:kubelet-certificate-bootstrap
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups:
      - "certificates.k8s.io"
      resources:
      - certificatesigningrequests/nodeclient
      verbs:
      - "create"
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: gce:beta:kubelet-certificate-rotation
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  8. pkg/controller/certificates/approver/sarapprove.go

    		},
    		{
    			recognize:      isNodeClientCert,
    			permission:     authorization.ResourceAttributes{Group: "certificates.k8s.io", Resource: "certificatesigningrequests", Verb: "create", Subresource: "nodeclient", Version: "*"},
    			successMessage: "Auto approving kubelet client certificate after SubjectAccessReview.",
    		},
    	}
    	return recognizers
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter_test.go

    				} else {
    					t.Errorf("SetUp() failed: %v", err)
    				}
    			}
    
    			// ensure call went all the way
    			pubs := csiMounter.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodePublishedVolumes()
    			vol, ok := pubs[csiMounter.volumeID]
    			if !ok {
    				t.Error("csi server may not have received NodePublishVolume call")
    			}
    			if vol.Path != csiMounter.GetPath() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. pkg/volume/csi/expander_test.go

    			csClient := setupClientWithExpansion(t, tc.nodeStageSet, tc.nodeExpansion)
    
    			fakeCSIClient, _ := csClient.(*fakeCsiDriverClient)
    			fakeNodeClient := fakeCSIClient.nodeClient
    
    			if tc.enableCSINodeExpandSecret {
    				_, err := plug.host.GetKubeClient().CoreV1().Secrets(tc.secret.Namespace).Create(context.TODO(), tc.secret, metav1.CreateOptions{})
    				if err != nil {
    					t.Fatal(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top