@@ -17,9 +17,11 @@ angular.module('openshiftConsole')
17
17
DeploymentsService ,
18
18
HPAService ,
19
19
ImageStreamResolver ,
20
+ ModalsService ,
20
21
Navigate ,
21
22
Logger ,
22
23
ProjectsService ,
24
+ StorageService ,
23
25
LabelFilter ,
24
26
labelNameFilter ,
25
27
keyValueEditorUtils ) {
@@ -291,8 +293,7 @@ angular.module('openshiftConsole')
291
293
292
294
$scope . scale = function ( replicas ) {
293
295
var showScalingError = function ( result ) {
294
- $scope . alerts = $scope . alerts || { } ;
295
- $scope . alerts [ "scale" ] = {
296
+ $scope . alerts [ "scale-error" ] = {
296
297
type : "error" ,
297
298
message : "An error occurred scaling the deployment config." ,
298
299
details : $filter ( 'getErrorDetails' ) ( result )
@@ -309,15 +310,65 @@ angular.module('openshiftConsole')
309
310
// Failure
310
311
function ( e ) {
311
312
$scope . updatingPausedState = false ;
312
- $scope . alerts = $scope . alerts || { } ;
313
- $scope . alerts [ "scale" ] = {
313
+ $scope . alerts [ "pause-error" ] = {
314
314
type : "error" ,
315
315
message : "An error occurred " + ( paused ? "pausing" : "resuming" ) + " the deployment config." ,
316
316
details : $filter ( 'getErrorDetails' ) ( e )
317
317
} ;
318
318
} ) ;
319
319
} ;
320
320
321
+ var isConfigChangeActive = function ( ) {
322
+ if ( _ . get ( $scope , 'deploymentConfig.spec.paused' ) ) {
323
+ return false ;
324
+ }
325
+
326
+ var triggers = _ . get ( $scope , 'deploymentConfig.spec.triggers' , [ ] ) ;
327
+ return _ . some ( triggers , { type : 'ConfigChange' } ) ;
328
+ } ;
329
+
330
+ $scope . removeVolume = function ( volume ) {
331
+ var details ;
332
+ if ( isConfigChangeActive ( ) ) {
333
+ details = "This will remove the volume from the deployment config and trigger a new deployment." ;
334
+ } else {
335
+ details = "This will remove the volume from the deployment config." ;
336
+ }
337
+
338
+ if ( volume . persistentVolumeClaim ) {
339
+ details += " It will not delete the persistent volume claim." ;
340
+ } else if ( volume . secret ) {
341
+ details += " It will not delete the secret." ;
342
+ } else if ( volume . configMap ) {
343
+ details += " It will not delete the config map." ;
344
+ }
345
+
346
+ var confirm = ModalsService . confirm ( {
347
+ message : "Remove volume " + volume . name + "?" ,
348
+ details : details ,
349
+ okButtonText : "Remove" ,
350
+ okButtonClass : "btn-danger" ,
351
+ cancelButtonText : "Cancel"
352
+ } ) ;
353
+
354
+ var showError = function ( e ) {
355
+ $scope . alerts [ "remove-volume-error" ] = {
356
+ type : "error" ,
357
+ message : "An error occurred removing the volume." ,
358
+ details : $filter ( 'getErrorDetails' ) ( e )
359
+ } ;
360
+ } ;
361
+
362
+ var removeVolume = function ( ) {
363
+ // No-op on success since the page updates.
364
+ StorageService
365
+ . removeVolume ( $scope . deploymentConfig , volume , context )
366
+ . then ( _ . noop , showError ) ;
367
+ } ;
368
+
369
+ confirm . then ( removeVolume ) ;
370
+ } ;
371
+
321
372
$scope . $on ( '$destroy' , function ( ) {
322
373
DataService . unwatchAll ( watches ) ;
323
374
} ) ;
0 commit comments