Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for lastPhaseTransitionTime (0.61 sec)

  1. pkg/registry/core/persistentvolume/strategy_test.go

    					Phase:                   api.VolumePending,
    					LastPhaseTransitionTime: &later,
    				},
    			},
    			expectedObj: &api.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Status: api.PersistentVolumeStatus{
    					Phase:                   api.VolumePending,
    					LastPhaseTransitionTime: &later,
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/registry/core/persistentvolume/storage/storage_test.go

    		},
    		Status: api.PersistentVolumeStatus{
    			Phase:                   api.VolumePending,
    			Message:                 "bar",
    			Reason:                  "foo",
    			LastPhaseTransitionTime: &now,
    		},
    	}
    	return pv
    }
    
    func TestCreate(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

          }
        },
        "volumeAttributesClassName": "volumeAttributesClassNameValue"
      },
      "status": {
        "phase": "phaseValue",
        "message": "messageValue",
        "reason": "reasonValue",
        "lastPhaseTransitionTime": "2004-01-01T01:01:01Z"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.yaml

      volumeMode: volumeModeValue
      vsphereVolume:
        fsType: fsTypeValue
        storagePolicyID: storagePolicyIDValue
        storagePolicyName: storagePolicyNameValue
        volumePath: volumePathValue
    status:
      lastPhaseTransitionTime: "2004-01-01T01:01:01Z"
      message: messageValue
      phase: phaseValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pkg/apis/core/zz_generated.deepcopy.go

    func (in *PersistentVolumeStatus) DeepCopyInto(out *PersistentVolumeStatus) {
    	*out = *in
    	if in.LastPhaseTransitionTime != nil {
    		in, out := &in.LastPhaseTransitionTime, &out.LastPhaseTransitionTime
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *PersistentVolumeStatus) DeepCopyInto(out *PersistentVolumeStatus) {
    	*out = *in
    	if in.LastPhaseTransitionTime != nil {
    		in, out := &in.LastPhaseTransitionTime, &out.LastPhaseTransitionTime
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Phase = core.PersistentVolumePhase(in.Phase)
    	out.Message = in.Message
    	out.Reason = in.Reason
    	out.LastPhaseTransitionTime = (*metav1.Time)(unsafe.Pointer(in.LastPhaseTransitionTime))
    	return nil
    }
    
    // Convert_v1_PersistentVolumeStatus_To_core_PersistentVolumeStatus is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// +featureGate=PersistentVolumeLastPhaseTransitionTime
    	// +optional
    	LastPhaseTransitionTime *metav1.Time `json:"lastPhaseTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastPhaseTransitionTime"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.0
    
    // PersistentVolumeList is a list of PersistentVolume items.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// +optional
    	Message string
    	// Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI
    	// +optional
    	Reason string
    	// LastPhaseTransitionTime is the time the phase transitioned from one to another
    	// and automatically resets to current time everytime a volume phase transitions.
    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

    	"reason":                  "reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.",
    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