Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for PersistentVolumeClaims (0.27 sec)

  1. cmd/kube-controller-manager/app/core.go

    		VolumePlugins:             plugins,
    		VolumeInformer:            controllerContext.InformerFactory.Core().V1().PersistentVolumes(),
    		ClaimInformer:             controllerContext.InformerFactory.Core().V1().PersistentVolumeClaims(),
    		ClassInformer:             controllerContext.InformerFactory.Storage().V1().StorageClasses(),
    		PodInformer:               controllerContext.InformerFactory.Core().V1().Pods(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. 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)
  3. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

      - clusterroles
      - roles
      - rolebindings
      verbs:
      - '*'
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      verbs:
      - '*'
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: istio-operator
    subjects:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  4. pkg/volume/util/resize_util.go

    	if err != nil {
    		return pvc, fmt.Errorf("patchPVCStatus failed to patch PVC %q: %v", pvc.Name, err)
    	}
    
    	updatedClaim, updateErr := kubeClient.CoreV1().PersistentVolumeClaims(pvc.Namespace).
    		Patch(context.TODO(), pvc.Name, types.StrategicMergePatchType, patchBytes, metav1.PatchOptions{}, "status")
    	if updateErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  5. pkg/apis/storage/types.go

    }
    
    // VolumeBindingMode indicates how PersistentVolumeClaims should be bound.
    type VolumeBindingMode string
    
    const (
    	// VolumeBindingImmediate indicates that PersistentVolumeClaims should be
    	// immediately provisioned and bound.
    	VolumeBindingImmediate VolumeBindingMode = "Immediate"
    
    	// VolumeBindingWaitForFirstConsumer indicates that PersistentVolumeClaims
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. 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)
  7. pkg/volume/util/operationexecutor/operation_generator_test.go

    	fakeKubeClient.AddReactor("get", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    		return true, pvc, nil
    	})
    	fakeKubeClient.AddReactor("get", "persistentvolumes", func(action core.Action) (bool, runtime.Object, error) {
    		return true, pv, nil
    	})
    	fakeKubeClient.AddReactor("patch", "persistentvolumeclaims", func(action core.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/volume_manager_test.go

    	namespace, claimName string,
    ) {
    	time.Sleep(500 * time.Millisecond)
    	volumeClaim, _ :=
    		kubeClient.CoreV1().PersistentVolumeClaims(namespace).Get(context.TODO(), claimName, metav1.GetOptions{})
    	volumeClaim.Status = v1.PersistentVolumeClaimStatus{
    		Phase: v1.ClaimBound,
    	}
    	kubeClient.CoreV1().PersistentVolumeClaims(namespace).Update(context.TODO(), volumeClaim, metav1.UpdateOptions{})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	podInformer := informerFactory.Core().V1().Pods()
    	nodeInformer := informerFactory.Core().V1().Nodes()
    	csiNodeInformer := informerFactory.Storage().V1().CSINodes()
    	pvcInformer := informerFactory.Core().V1().PersistentVolumeClaims()
    	classInformer := informerFactory.Storage().V1().StorageClasses()
    	csiDriverInformer := informerFactory.Storage().V1().CSIDrivers()
    	csiStorageCapacityInformer := informerFactory.Storage().V1().CSIStorageCapacities()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.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