Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for CSIDrivers (0.18 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - namespaces
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - storage.k8s.io
        resources:
        - csidrivers
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - storage.k8s.io
        resources:
        - csistoragecapacities
        verbs:
        - get
        - list
        - watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/util/util_test.go

    	kubeClient := fake.NewSimpleClientset()
    
    	factory := informers.NewSharedInformerFactory(kubeClient, time.Minute)
    	csiDriverInformer := factory.Storage().V1().CSIDrivers()
    	csiDriverLister := csiDriverInformer.Lister()
    	volumeAttachmentInformer := factory.Storage().V1().VolumeAttachments()
    	volumeAttachmentLister := volumeAttachmentInformer.Lister()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. pkg/kubelet/volume_host.go

    	// Don't initialize if kubeClient is nil
    	if kubelet.kubeClient != nil {
    		informerFactory = informers.NewSharedInformerFactory(kubelet.kubeClient, resyncPeriod)
    		csiDriverInformer := informerFactory.Storage().V1().CSIDrivers()
    		csiDriverLister = csiDriverInformer.Lister()
    		csiDriversSynced = csiDriverInformer.Informer().HasSynced
    
    	} else {
    		klog.InfoS("KubeClient is nil. Skip initialization of CSIDriverLister")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		informerFactory.Core().V1().Nodes(),
    		informerFactory.Core().V1().PersistentVolumeClaims(),
    		informerFactory.Core().V1().PersistentVolumes(),
    		informerFactory.Storage().V1().CSINodes(),
    		informerFactory.Storage().V1().CSIDrivers(),
    		informerFactory.Storage().V1().VolumeAttachments(),
    		plugins,
    		nil, /* prober */
    		false,
    		1*time.Second,
    		false,
    		DefaultTimerConfig,
    	)
    
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    	nodePolicyRules = append(nodePolicyRules, pvcStatusPolicyRule)
    
    	// CSI
    	csiDriverRule := rbacv1helpers.NewRule("get", "watch", "list").Groups("storage.k8s.io").Resources("csidrivers").RuleOrDie()
    	nodePolicyRules = append(nodePolicyRules, csiDriverRule)
    	csiNodeInfoRule := rbacv1helpers.NewRule("get", "create", "update", "patch", "delete").Groups("storage.k8s.io").Resources("csinodes").RuleOrDie()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name: testDriver,
    		},
    		Spec: storagev1.CSIDriverSpec{
    			AttachRequired: &attachRequired,
    		},
    	}
    	_, err := fakeClient.StorageV1().CSIDrivers().Create(context.TODO(), fakeDriver, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Failed to create a fakeDriver: %v", err)
    	}
    
    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. api/discovery/aggregated_v2.json

            "name": "storage.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "csidrivers",
                  "responseKind": {
                    "group": "",
                    "kind": "CSIDriver",
                    "version": ""
                  },
                  "scope": "Cluster",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	csiNodeInformer := fh.SharedInformerFactory().Storage().V1().CSINodes()
    	capacityCheck := CapacityCheck{
    		CSIDriverInformer:          fh.SharedInformerFactory().Storage().V1().CSIDrivers(),
    		CSIStorageCapacityInformer: fh.SharedInformerFactory().Storage().V1().CSIStorageCapacities(),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2beta1.json

            "name": "storage.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "csidrivers",
                  "responseKind": {
                    "group": "",
                    "kind": "CSIDriver",
                    "version": ""
                  },
                  "scope": "Cluster",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_client.go

    }
    
    func newCsiDriverClient(driverName csiDriverName) (*csiDriverClient, error) {
    	if driverName == "" {
    		return nil, fmt.Errorf("driver name is empty")
    	}
    
    	existingDriver, driverExists := csiDrivers.Get(string(driverName))
    	if !driverExists {
    		return nil, fmt.Errorf("driver name %s not found in the list of registered CSI drivers", driverName)
    	}
    
    	nodeV1ClientCreator := newV1NodeClient
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
Back to top