@@ -154,44 +154,49 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
154
154
// TODO: Also consider an API_OBJECTS_TO_IGNORE
155
155
// map that can blacklist some, for example, if FailedCreate
156
156
// 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
159
159
FailedCreate : true ,
160
160
FailedDelete : true ,
161
161
FailedUpdate : true ,
162
162
// Build
163
- BuildStarted : true ,
163
+ BuildCancelled : true ,
164
164
BuildCompleted : true ,
165
165
BuildFailed : true ,
166
- BuildCancelled : true ,
166
+ BuildStarted : true ,
167
167
// BuildConfig
168
- //
168
+ BuildConfigInstantiateFailed : true ,
169
169
// Deployment
170
+ DeploymentCancelled : true ,
170
171
Failed : true ,
171
172
ScalingReplicaSet : true ,
172
- DeploymentCancelled : true ,
173
173
// DeploymentConfig
174
174
DeploymentCreated : true ,
175
175
DeploymentCreationFailed : true ,
176
+ // HorizontalPodAutoscaler
177
+ FailedRescale : true ,
178
+ SuccessfulRescale : true ,
176
179
// Pod
177
- FailedSync : true ,
178
180
BackOff : true ,
181
+ FailedSync : true ,
179
182
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 ,
191
183
// PVC
192
- VolumeDeleted : true ,
193
184
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
195
200
} ,
196
201
197
202
// href's will be prefixed with /project/{{projectName}} unless they are absolute URLs
0 commit comments