You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: api/swagger-spec/oapi-v1.json
+2-2
Original file line number
Diff line number
Diff line change
@@ -24587,9 +24587,9 @@
24587
24587
},
24588
24588
"description": "stages contains details about each stage that occurs during the build including start time, duration (in milliseconds), and the steps that occured within each stage."
24589
24589
},
24590
-
"logTail": {
24590
+
"outputExcerpt": {
24591
24591
"type": "string",
24592
-
"description": "LogTail is the last few lines of the build log. This value is only set for builds that failed."
24592
+
"description": "OutputExcerpt is the last few lines of the build log. This value is only set for builds that failed."
Copy file name to clipboardexpand all lines: api/swagger-spec/openshift-openapi-spec.json
+4-4
Original file line number
Diff line number
Diff line change
@@ -82826,10 +82826,6 @@
82826
82826
"type": "integer",
82827
82827
"format": "int64"
82828
82828
},
82829
-
"logTail": {
82830
-
"description": "LogTail is the last few lines of the build log. This value is only set for builds that failed.",
82831
-
"type": "string"
82832
-
},
82833
82829
"message": {
82834
82830
"description": "message is a human-readable message indicating details about why the build has this status.",
82835
82831
"type": "string"
@@ -82842,6 +82838,10 @@
82842
82838
"description": "outputDockerImageReference contains a reference to the Docker image that will be built by this build. Its value is computed from Build.Spec.Output.To, and should include the registry address, so that it can be used to push and pull the image.",
82843
82839
"type": "string"
82844
82840
},
82841
+
"outputExcerpt": {
82842
+
"description": "OutputExcerpt is the last few lines of the build log. This value is only set for builds that failed.",
82843
+
"type": "string"
82844
+
},
82845
82845
"phase": {
82846
82846
"description": "phase is the point in the build lifecycle. Possible values are \"New\", \"Pending\", \"Running\", \"Complete\", \"Failed\", \"Error\", and \"Cancelled\".",
Copy file name to clipboardexpand all lines: pkg/build/apis/build/v1/swagger_doc.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -204,7 +204,7 @@ var map_BuildStatus = map[string]string{
204
204
"config": "config is an ObjectReference to the BuildConfig this Build is based on.",
205
205
"output": "output describes the Docker image the build has produced.",
206
206
"stages": "stages contains details about each stage that occurs during the build including start time, duration (in milliseconds), and the steps that occured within each stage.",
207
-
"logTail": "LogTail is the last few lines of the build log. This value is only set for builds that failed.",
207
+
"outputExcerpt": "OutputExcerpt is the last few lines of the build log. This value is only set for builds that failed.",
0 commit comments