Skip to content

Commit 72f8452

Browse files
author
OpenShift Bot
authored
Merge pull request #1983 from spadgett/events-to-show
Merged by openshift-bot
2 parents 9e9fa0f + 128ec73 commit 72f8452

File tree

2 files changed

+117
-103
lines changed

2 files changed

+117
-103
lines changed

app/scripts/constants.js

+25-20
Original file line numberDiff line numberDiff line change
@@ -154,44 +154,49 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
154154
// TODO: Also consider an API_OBJECTS_TO_IGNORE
155155
// map that can blacklist some, for example, if FailedCreate
156156
// applies to many but we don't want to see all.
157-
EVENTS_TO_SHOW: {
158-
// CRUD events that apply to more than one api object
157+
EVENTS_TO_SHOW: {
158+
// General events that apply to more than one api object
159159
FailedCreate: true,
160160
FailedDelete: true,
161161
FailedUpdate: true,
162162
// Build
163-
BuildStarted: true,
163+
BuildCancelled: true,
164164
BuildCompleted: true,
165165
BuildFailed: true,
166-
BuildCancelled: true,
166+
BuildStarted: true,
167167
// BuildConfig
168-
//
168+
BuildConfigInstantiateFailed: true,
169169
// Deployment
170+
DeploymentCancelled: true,
170171
Failed: true,
171172
ScalingReplicaSet: true,
172-
DeploymentCancelled: true,
173173
// DeploymentConfig
174174
DeploymentCreated: true,
175175
DeploymentCreationFailed: true,
176+
// HorizontalPodAutoscaler
177+
FailedRescale: true,
178+
SuccessfulRescale: true,
176179
// Pod
177-
FailedSync: true,
178180
BackOff: true,
181+
FailedSync: true,
179182
Unhealthy: true,
180-
// Image/Pod
181-
Pulling: true,
182-
Pulled: true,
183-
// SuccessfulDelete: true,
184-
// Cron
185-
//
186-
// PodAutoscaler
187-
SuccessfulRescale: true,
188-
FailedRescale: true,
189-
// Service
190-
LoadBalancerUpdateFailed: true,
191183
// PVC
192-
VolumeDeleted: true,
193184
FailedBinding: true,
194-
ProvisioningFailed: true
185+
ProvisioningFailed: true,
186+
VolumeDeleted: true,
187+
// Service
188+
LoadBalancerUpdateFailed: true,
189+
// Service Catalog
190+
Deprovisioning: true,
191+
ErrorAsyncOperationInProgress: true,
192+
ErrorCallingProvision: true,
193+
ErrorInjectingBindResult: true,
194+
ProvisionedSuccessfully: true,
195+
Provisioning: true,
196+
ReferencesNonexistentInstance: true,
197+
ReferencesNonexistentServiceClass: true,
198+
ReferencesNonexistentServicePlan: true,
199+
UnbindCallFailed: true
195200
},
196201

197202
// href's will be prefixed with /project/{{projectName}} unless they are absolute URLs

0 commit comments

Comments
 (0)