Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 124 for PersistentVolumeClaims (0.27 sec)

  1. api/discovery/api__v1.json

          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "kind": "PersistentVolumeClaim",
          "name": "persistentvolumeclaims",
          "namespaced": true,
          "shortNames": [
            "pvc"
          ],
          "singularName": "persistentvolumeclaim",
          "storageVersionHash": "QWTyNDq0dC4=",
          "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    		return false, nil, nil
    	}
    }
    
    func TestPVCProtectionController(t *testing.T) {
    	pvcGVR := schema.GroupVersionResource{
    		Group:    v1.GroupName,
    		Version:  "v1",
    		Resource: "persistentvolumeclaims",
    	}
    	podGVR := schema.GroupVersionResource{
    		Group:    v1.GroupName,
    		Version:  "v1",
    		Resource: "pods",
    	}
    	podGVK := schema.GroupVersionKind{
    		Group:   v1.GroupName,
    		Version: "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/framework/fake_listers.go

    	return nil, fmt.Errorf("not implemented")
    }
    
    // PersistentVolumeClaims returns a fake PersistentVolumeClaimLister object.
    func (pvcs PersistentVolumeClaimLister) PersistentVolumeClaims(namespace string) corelisters.PersistentVolumeClaimNamespaceLister {
    	ps := make([]*v1.PersistentVolumeClaim, len(pvcs))
    	for i := range pvcs {
    		ps[i] = &pvcs[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule(Read...).Groups(legacyGroup).Resources("pods", "replicationcontrollers", "replicationcontrollers/scale", "serviceaccounts",
    					"services", "services/status", "endpoints", "persistentvolumeclaims", "persistentvolumeclaims/status", "configmaps").RuleOrDie(),
    				rbacv1helpers.NewRule(Read...).Groups(legacyGroup).Resources("limitranges", "resourcequotas", "bindings", "events",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator_test.go

    	fakePodInformer.Informer().GetStore().Add(pod)
    
    	podName := util.GetUniquePodName(pod)
    
    	generatedVolumeName := "fake-plugin/" + pod.Spec.Volumes[0].RBD.RBDImage
    
    	pvcLister := fakeInformerFactory.Core().V1().PersistentVolumeClaims().Lister()
    	pvLister := fakeInformerFactory.Core().V1().PersistentVolumes().Lister()
    
    	csiTranslator := csitrans.New()
    	dswp := &desiredStateOfWorldPopulator{
    		loopSleepDuration:        100 * time.Millisecond,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. pkg/quota/v1/install/update_filter.go

    			oldService := oldObj.(*v1.Service)
    			newService := newObj.(*v1.Service)
    			return core.GetQuotaServiceType(oldService) != core.GetQuotaServiceType(newService)
    		case schema.GroupResource{Resource: "persistentvolumeclaims"}:
    			oldPVC := oldObj.(*v1.PersistentVolumeClaim)
    			newPVC := newObj.(*v1.PersistentVolumeClaim)
    			return core.RequiresQuotaReplenish(newPVC, oldPVC)
    		}
    
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 22:39:55 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. cluster/addons/volumesnapshots/volume-snapshot-controller/rbac-volume-snapshot-controller.yaml

        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources: ["persistentvolumes"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["persistentvolumeclaims"]
        verbs: ["get", "list", "watch", "update"]
      - apiGroups: ["storage.k8s.io"]
        resources: ["storageclasses"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["events"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 14:09:47 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1/types.go

    	// Resource is the name of the resource this rule applies to.
    	// For example, if the administrator wants to limit consumption
    	// of a storage resource associated with persistent volume claims,
    	// the value would be "persistentvolumeclaims".
    	Resource string `json:"resource"`
    
    	// For each intercepted request, the quota system will evaluate
    	// its resource usage.  It will iterate through each resource consumed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1alpha1/types.go

    	// Resource is the name of the resource this rule applies to.
    	// For example, if the administrator wants to limit consumption
    	// of a storage resource associated with persistent volume claims,
    	// the value would be "persistentvolumeclaims".
    	Resource string `json:"resource"`
    
    	// For each intercepted request, the quota system will evaluate
    	// its resource usage.  It will iterate through each resource consumed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    	// Resource is the name of the resource this rule applies to.
    	// For example, if the administrator wants to limit consumption
    	// of a storage resource associated with persistent volume claims,
    	// the value would be "persistentvolumeclaims".
    	Resource string `json:"resource"`
    
    	// For each intercepted request, the quota system will evaluate
    	// its resource usage.  It will iterate through each resource consumed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K bytes
    - Viewed (0)
Back to top