Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for targetVolumeAttributesClassName (0.32 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.yaml

            status: statusValue
            type: typeValue
          currentVolumeAttributesClassName: currentVolumeAttributesClassNameValue
          modifyVolumeStatus:
            status: statusValue
            targetVolumeAttributesClassName: targetVolumeAttributesClassNameValue
          phase: phaseValue
    status:
      availableReplicas: 11
      collisionCount: 9
      conditions:
      - lastTransitionTime: "2003-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  2. 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 {
    		name     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.StatefulSet.json

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

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    type ModifyVolumeStatus struct {
    	// targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled
    	TargetVolumeAttributesClassName string `json:"targetVolumeAttributesClassName,omitempty" protobuf:"bytes,1,opt,name=targetVolumeAttributesClassName"`
    	// status is the status of the ControllerModifyVolume operation. It can be in any of following states:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ModifyVolumeStatus_To_core_ModifyVolumeStatus(in *v1.ModifyVolumeStatus, out *core.ModifyVolumeStatus, s conversion.Scope) error {
    	out.TargetVolumeAttributesClassName = in.TargetVolumeAttributesClassName
    	out.Status = core.PersistentVolumeClaimModifyVolumeStatus(in.Status)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    )
    
    // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation
    type ModifyVolumeStatus struct {
    	// targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled
    	TargetVolumeAttributesClassName string
    	// status is the status of the ControllerModifyVolume operation. It can be in any of following states:
    	//  - Pending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_ModifyVolumeStatus = map[string]string{
    	"":                                "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation",
    	"targetVolumeAttributesClassName": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top