Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for PVCs (0.04 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    // StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs
    // created from the StatefulSet VolumeClaimTemplates.
    message StatefulSetPersistentVolumeClaimRetentionPolicy {
      // WhenDeleted specifies what happens to PVCs created from StatefulSet
      // VolumeClaimTemplates when the StatefulSet is deleted. The default policy
      // of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    // StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs
    // created from the StatefulSet VolumeClaimTemplates.
    message StatefulSetPersistentVolumeClaimRetentionPolicy {
      // WhenDeleted specifies what happens to PVCs created from StatefulSet
      // VolumeClaimTemplates when the StatefulSet is deleted. The default policy
      // of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumezone/volume_zone_test.go

    			}
    		})
    	}
    }
    
    func newPluginWithListers(ctx context.Context, tb testing.TB, pods []*v1.Pod, nodes []*v1.Node, pvcs []*v1.PersistentVolumeClaim, pvs []*v1.PersistentVolume) framework.Plugin {
    	snapshot := cache.NewSnapshot(pods, nodes)
    
    	objects := make([]runtime.Object, 0, len(pvcs))
    	for _, pvc := range pvcs {
    		objects = append(objects, pvc)
    	}
    	for _, pv := range pvs {
    		objects = append(objects, pv)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 05:17:04 UTC 2023
    - 20K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers.go

    	}
    
    	// CheckVolumeBindingPred fails if pod has unbound immediate PVCs. If these
    	// PVCs have specified StorageClass name, creating StorageClass objects
    	// with late binding will cause predicates to pass, so we need to move pods
    	// to active queue.
    	// We don't need to invalidate cached results because results will not be
    	// cached for pod that has unbound immediate PVCs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		pod.Status.ResourceClaimStatuses = append(pod.Status.ResourceClaimStatuses, corev1.PodResourceClaimStatus{
    			Name:              podClaimName,
    			ResourceClaimName: &claimName,
    		})
    	}
    	// Choose shared pvcs randomly from shared pvcs in a namespace.
    	subset = randomSubset(opts.sharedPVCsPerPod, opts.sharedPVCsPerNamespace)
    	for _, i := range subset {
    		pv := &corev1.PersistentVolume{}
    		pv.Name = fmt.Sprintf("pv%d-shared-%s", i, pod.Namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. plugin/pkg/admission/limitranger/admission.go

    		return PersistentVolumeClaimValidateLimitFunc(limitRange, obj.(*api.PersistentVolumeClaim))
    	}
    	return nil
    }
    
    // SupportsAttributes ignores all calls that do not deal with pod resources or storage requests (PVCs).
    // Also ignores any call that has a subresource defined.
    func (d *DefaultLimitRangerActions) SupportsAttributes(a admission.Attributes) bool {
    	if a.GetSubresource() != "" {
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	// of code conflicts because changes are more likely to be scattered
    	// across the file.
    
    	// owner: @ttakahashi21 @mkimuram
    	// kep: https://kep.k8s.io/3294
    	// alpha: v1.26
    	//
    	// Enable usage of Provision of PVCs from snapshots in other namespaces
    	CrossNamespaceVolumeDataSource featuregate.Feature = "CrossNamespaceVolumeDataSource"
    
    	// owner: @thockin
    	// deprecated: v1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/cache/snapshot_test.go

    				{
    					Pods: []*framework.PodInfo{
    						{Pod: podWithPort},
    					},
    				},
    			},
    			expectedNumNodes: 1,
    		},
    		{
    			name: "multiple nodes, pods with PVCs",
    			pods: podsWithPVCs,
    			nodes: []*v1.Node{
    				{ObjectMeta: metav1.ObjectMeta{Name: "node-0"}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node-1"}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node-2"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/wait.go

    // deployment holds associated replicaSets for a deployment
    type deployment struct {
    	replicaSets *appsv1.ReplicaSet
    	deployment  *appsv1.Deployment
    }
    
    // WaitForResources polls to get the current status of all pods, PVCs, and Services
    // until all are ready or a timeout is reached
    func WaitForResources(objects object.K8sObjects, client kube.Client,
    	waitTimeout time.Duration, dryRun bool, l *progress.ManifestLog,
    ) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils.go

    		if matchesRef(&ownerRef, set, controllerKind) {
    			if ownerRef.UID != set.GetUID() {
    				// A UID mismatch means that pods were incorrectly orphaned. Treating this as an unexpected
    				// controller means we won't touch the PVCs (eg, leave it to the garbage collector to clean
    				// up if appropriate).
    				return true
    			}
    			continue // This is us.
    		}
    
    		if matchesRef(&ownerRef, pod, podKind) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top