Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for PersistentVolumeClaims (0.31 sec)

  1. 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)
  2. 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)
  3. plugin/pkg/admission/storage/storageclass/setdefault/admission.go

    // 3.  Write to the PVClaim
    func (a *claimDefaulterPlugin) Admit(ctx context.Context, attr admission.Attributes, o admission.ObjectInterfaces) error {
    	if attr.GetResource().GroupResource() != api.Resource("persistentvolumeclaims") {
    		return nil
    	}
    
    	if len(attr.GetSubresource()) != 0 {
    		return nil
    	}
    
    	pvc, ok := attr.GetObject().(*api.PersistentVolumeClaim)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 18:52:04 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. pkg/controlplane/storageversionhashdata/data.go

    	"v1/events":                 "r2yiGXH7wu8=",
    	"v1/limitranges":            "EBKMFVe6cwo=",
    	"v1/namespaces":             "Q3oi5N2YM8M=",
    	"v1/nodes":                  "XwShjMxG9Fs=",
    	"v1/persistentvolumeclaims": "QWTyNDq0dC4=",
    	"v1/persistentvolumes":      "HN/zwEC+JgM=",
    	"v1/pods":                   "xPOwRZ+Yhw8=",
    	"v1/podtemplates":           "LIXB2x4IFpk=",
    	"v1/replicationcontrollers": "Jond2If31h0=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/ephemeral/controller.go

    	logger.V(5).Info("Ephemeral: checking volume", "volumeName", vol.Name)
    	if vol.Ephemeral == nil {
    		return nil
    	}
    
    	pvcName := ephemeral.VolumeClaimName(pod, &vol)
    	pvc, err := ec.pvcLister.PersistentVolumeClaims(pod.Namespace).Get(pvcName)
    	if err != nil && !errors.IsNotFound(err) {
    		return err
    	}
    	if pvc != nil {
    		if err := ephemeral.VolumeIsForPod(pod, pvc); err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/apps.go

    	go statefulset.NewStatefulSetController(
    		ctx,
    		controllerContext.InformerFactory.Core().V1().Pods(),
    		controllerContext.InformerFactory.Apps().V1().StatefulSets(),
    		controllerContext.InformerFactory.Core().V1().PersistentVolumeClaims(),
    		controllerContext.InformerFactory.Apps().V1().ControllerRevisions(),
    		controllerContext.ClientBuilder.ClientOrDie("statefulset-controller"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/operator/output/operator-dump.yaml

      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &api.PersistentVolumeClaimList{} },
    		PredicateFunc:             persistentvolumeclaim.MatchPersistentVolumeClaim,
    		DefaultQualifiedResource:  api.Resource("persistentvolumeclaims"),
    		SingularQualifiedResource: api.Resource("persistentvolumeclaim"),
    
    		CreateStrategy:      persistentvolumeclaim.Strategy,
    		UpdateStrategy:      persistentvolumeclaim.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    					},
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			Phase: v1.PodPhase("Running"),
    		},
    	}
    
    	fakePodInformer.Informer().GetStore().Add(pod)
    	pvcInformer := fakeInformerFactory.Core().V1().PersistentVolumeClaims()
    	pvInformer := fakeInformerFactory.Core().V1().PersistentVolumes()
    
    	pvc := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "metric-test-pvc",
    			Namespace: "metric-test",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top