Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for ModifyVolumeStatus (0.29 sec)

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

    }
    
    // ModifyVolumeStatusApplyConfiguration constructs an declarative configuration of the ModifyVolumeStatus type for use with
    // apply.
    func ModifyVolumeStatus() *ModifyVolumeStatusApplyConfiguration {
    	return &ModifyVolumeStatusApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimstatus.go

    	CurrentVolumeAttributesClassName *string                                            `json:"currentVolumeAttributesClassName,omitempty"`
    	ModifyVolumeStatus               *ModifyVolumeStatusApplyConfiguration              `json:"modifyVolumeStatus,omitempty"`
    }
    
    // PersistentVolumeClaimStatusApplyConfiguration constructs an declarative configuration of the PersistentVolumeClaimStatus type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolumeClaim.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolumeClaim.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolumeClaim.yaml

        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue
      modifyVolumeStatus:
        status: statusValue
        targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolumeClaim.yaml

        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue
      modifyVolumeStatus:
        status: statusValue
        targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolumeClaim.yaml

        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue
      modifyVolumeStatus:
        status: statusValue
        targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pkg/api/persistentvolumeclaim/util.go

    		if oldPVC == nil || oldPVC.Status.CurrentVolumeAttributesClassName == nil {
    			pvc.Status.CurrentVolumeAttributesClassName = nil
    		}
    		if oldPVC == nil || oldPVC.Status.ModifyVolumeStatus == nil {
    			pvc.Status.ModifyVolumeStatus = nil
    		}
    	}
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.RecoverVolumeExpansionFailure) {
    		if !helper.ClaimContainsAllocatedResources(oldPVC) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. pkg/api/persistentvolumeclaim/util_test.go

    	return &core.PersistentVolumeClaim{
    		Status: core.PersistentVolumeClaimStatus{
    			ModifyVolumeStatus: &core.ModifyVolumeStatus{
    				TargetVolumeAttributesClassName: target,
    				Status:                          status,
    			},
    		},
    	}
    }
    
    func TestWarnings(t *testing.T) {
    	testcases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top