Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PVCs (0.2 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			}
    		}
    		return true, nil
    	})
    }
    
    func (env *testEnv) updateClaims(ctx context.Context, pvcs []*v1.PersistentVolumeClaim) error {
    	for i, pvc := range pvcs {
    		newPvc, err := env.client.CoreV1().PersistentVolumeClaims(pvc.Namespace).Update(ctx, pvc, metav1.UpdateOptions{})
    		if err != nil {
    			return err
    		}
    		pvcs[i] = newPvc
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    // StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs
    // created from the StatefulSet VolumeClaimTemplates.
    type StatefulSetPersistentVolumeClaimRetentionPolicy struct {
    	// 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 May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    // ==================================================================
    
    // Design:
    //
    // The fundamental key to this design is the bi-directional "pointer" between
    // PersistentVolumes (PVs) and PersistentVolumeClaims (PVCs), which is
    // represented here as pvc.Spec.VolumeName and pv.Spec.ClaimRef. The bi-
    // directionality is complicated to manage in a transactionless system, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top