@@ -64,29 +64,21 @@ const (
6464 // for a resync.
6565 BuildAcceptedAnnotation = "build.openshift.io/accepted"
6666
67- // BuildCreatedEvent is the reason associated with the event registered when a build is created.
68- BuildCreatedEventReason = "BuildCreated"
69- // BuildCreatedEventMessage is the message associatd with the event registered when a build is created.
70- BuildCreatedEventMessage = "Build %s/%s has been created"
71- // BuildStartedEvent is the reason associated with the event registered when a build is started (pod is created).
67+ // BuildStartedEventReason is the reason associated with the event registered when a build is started (pod is created).
7268 BuildStartedEventReason = "BuildStarted"
73- // BuildStartedEvent is the message associated with the event registered when a build is started (pod is created).
74- BuildStartedEventMessage = "Pod has been created to run build %s/%s"
75- // BuildRunningEvent is the reason associated with the event registered when the build pod starts running.
76- BuildRunningEventReason = "BuildRunning"
77- // BuildRunningEvent is the message associated with the event registered when the build pod starts running.
78- BuildRunningEventMessage = "Pod for build %s/%s started running"
79- // BuildCompletedEvent is the reason associated with the event registered when build completes successfully.
69+ // BuildStartedEventMessage is the message associated with the event registered when a build is started (pod is created).
70+ BuildStartedEventMessage = "Build %s/%s is now running"
71+ // BuildCompletedEventReason is the reason associated with the event registered when build completes successfully.
8072 BuildCompletedEventReason = "BuildCompleted"
81- // BuildCompletedEvent is the message associated with the event registered when build completes successfully.
73+ // BuildCompletedEventMessage is the message associated with the event registered when build completes successfully.
8274 BuildCompletedEventMessage = "Build %s/%s completed successfully"
83- // BuildFailedEvent is the reason associated with the event registered when build fails.
75+ // BuildFailedEventReason is the reason associated with the event registered when build fails.
8476 BuildFailedEventReason = "BuildFailed"
85- // BuildFailedEvent is the message associated with the event registered when build fails.
77+ // BuildFailedEventMessage is the message associated with the event registered when build fails.
8678 BuildFailedEventMessage = "Build %s/%s failed"
87- // BuildCancelledEvent is the reason associated with the event registered when build is cancelled.
79+ // BuildCancelledEventReason is the reason associated with the event registered when build is cancelled.
8880 BuildCancelledEventReason = "BuildCancelled"
89- // BuildCancelledEvent is the message associated with the event registered when build is cancelled.
81+ // BuildCancelledEventMessage is the message associated with the event registered when build is cancelled.
9082 BuildCancelledEventMessage = "Build %s/%s has been cancelled"
9183)
9284
0 commit comments