Skip to content

Commit edac9f2

Browse files
author
OpenShift Bot
authored
Merge pull request #11660 from kargakis/update-deployment-conditions
Merged by openshift-bot
2 parents b61cf87 + 41da0db commit edac9f2

13 files changed

+286
-211
lines changed

api/protobuf-spec/github_com_openshift_origin_pkg_deploy_api_v1.proto

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/swagger-spec/oapi-v1.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24836,6 +24836,10 @@
2483624836
"type": "string",
2483724837
"description": "Status of the condition, one of True, False, Unknown."
2483824838
},
24839+
"lastUpdateTime": {
24840+
"type": "string",
24841+
"description": "The last time this condition was updated."
24842+
},
2483924843
"lastTransitionTime": {
2484024844
"type": "string",
2484124845
"description": "The last time the condition transitioned from one status to another."

api/swagger-spec/openshift-openapi-spec.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46155,6 +46155,10 @@
4615546155
"description": "The last time the condition transitioned from one status to another.",
4615646156
"type": "string"
4615746157
},
46158+
"lastUpdateTime": {
46159+
"description": "The last time this condition was updated.",
46160+
"type": "string"
46161+
},
4615846162
"message": {
4615946163
"description": "A human readable message indicating details about the transition.",
4616046164
"type": "string"

pkg/deploy/api/types.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,8 @@ type DeploymentCondition struct {
437437
Type DeploymentConditionType
438438
// Status of the condition, one of True, False, Unknown.
439439
Status kapi.ConditionStatus
440+
// The last time this condition was updated.
441+
LastUpdateTime unversioned.Time
440442
// The last time the condition transitioned from one status to another.
441443
LastTransitionTime unversioned.Time
442444
// The reason for the condition's last transition.

0 commit comments

Comments
 (0)