Commit 628e6304 authored by Michail Kargakis's avatar Michail Kargakis

Remove lastProbeTime from rc/rs conditions

parent 66a0aa64
...@@ -2041,9 +2041,6 @@ type ReplicationControllerCondition struct { ...@@ -2041,9 +2041,6 @@ type ReplicationControllerCondition struct {
Type ReplicationControllerConditionType `json:"type"` Type ReplicationControllerConditionType `json:"type"`
// Status of the condition, one of True, False, Unknown. // Status of the condition, one of True, False, Unknown.
Status ConditionStatus `json:"status"` Status ConditionStatus `json:"status"`
// Last time we probed the condition.
// +optional
LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"`
// The last time the condition transitioned from one status to another. // The last time the condition transitioned from one status to another.
// +optional // +optional
LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"`
......
...@@ -2350,9 +2350,6 @@ type ReplicationControllerCondition struct { ...@@ -2350,9 +2350,6 @@ type ReplicationControllerCondition struct {
Type ReplicationControllerConditionType `json:"type"` Type ReplicationControllerConditionType `json:"type"`
// Status of the condition, one of True, False, Unknown. // Status of the condition, one of True, False, Unknown.
Status ConditionStatus `json:"status"` Status ConditionStatus `json:"status"`
// Last time we probed the condition.
// +optional
LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"`
// The last time the condition transitioned from one status to another. // The last time the condition transitioned from one status to another.
// +optional // +optional
LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"`
......
...@@ -739,9 +739,6 @@ type ReplicaSetCondition struct { ...@@ -739,9 +739,6 @@ type ReplicaSetCondition struct {
Type ReplicaSetConditionType `json:"type"` Type ReplicaSetConditionType `json:"type"`
// Status of the condition, one of True, False, Unknown. // Status of the condition, one of True, False, Unknown.
Status api.ConditionStatus `json:"status"` Status api.ConditionStatus `json:"status"`
// Last time we probed the condition.
// +optional
LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"`
// The last time the condition transitioned from one status to another. // The last time the condition transitioned from one status to another.
// +optional // +optional
LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"`
......
...@@ -1035,9 +1035,6 @@ type ReplicaSetCondition struct { ...@@ -1035,9 +1035,6 @@ type ReplicaSetCondition struct {
Type ReplicaSetConditionType `json:"type"` Type ReplicaSetConditionType `json:"type"`
// Status of the condition, one of True, False, Unknown. // Status of the condition, one of True, False, Unknown.
Status v1.ConditionStatus `json:"status"` Status v1.ConditionStatus `json:"status"`
// Last time we probed the condition.
// +optional
LastProbeTime unversioned.Time `json:"lastProbeTime,omitempty"`
// The last time the condition transitioned from one status to another. // The last time the condition transitioned from one status to another.
// +optional // +optional
LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"` LastTransitionTime unversioned.Time `json:"lastTransitionTime,omitempty"`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment