Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PersistentVolumePhase (0.24 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumestatus.go

    // PersistentVolumeStatusApplyConfiguration represents an declarative configuration of the PersistentVolumeStatus type for use
    // with apply.
    type PersistentVolumeStatusApplyConfiguration struct {
    	Phase                   *v1.PersistentVolumePhase `json:"phase,omitempty"`
    	Message                 *string                   `json:"message,omitempty"`
    	Reason                  *string                   `json:"reason,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:39:24 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/test_utils.go

    	pvb.PersistentVolume.Spec.Capacity = v1.ResourceList{
    		v1.ResourceName(v1.ResourceStorage): capacity,
    	}
    	return pvb
    }
    
    func (pvb pvBuilder) withPhase(phase v1.PersistentVolumePhase) pvBuilder {
    	pvb.PersistentVolume.Status = v1.PersistentVolumeStatus{
    		Phase: phase,
    	}
    	return pvb
    }
    
    type pvcBuilder struct {
    	*v1.PersistentVolumeClaim
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top