Skip to content

Commit

Permalink
Hiding auto-redeployment feature in VRA
Browse files Browse the repository at this point in the history
- the problem is that the auto-redeployment does not
notiify the catalog for changes, and due to that
the provisioned blueprint keeps the old container.

- created a task for investigation of possible ways to
notify the catalog - https://jira-hzn.eng.vmware.com/browse/VBV-1709

- will hide it also from the composition UI

Change-Id: Ie02779c217b5b7b88a6f5daa267764367b688956
Reviewed-on: http://bellevue-ci.eng.vmware.com:8080/19551
Upgrade-Verified: jenkins <[email protected]>
Closures-Verified: jenkins <[email protected]>
Bellevue-Verified: jenkins <[email protected]>
Reviewed-by: Sergio Sanchez <[email protected]>
CS-Verified: jenkins <[email protected]>
  • Loading branch information
afilipov1 committed Oct 24, 2017
1 parent 284b782 commit 57096c1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1198,6 +1198,10 @@ function healthConfigModeChanged($el, mode) {
$el.find('.health-ignore-on-provision-input').show();
$el.find('.container-autoredeployment-input').show();
}

if (utils.isApplicationEmbedded()) {
$el.find('.container-autoredeployment-input').hide();
}
}

var normalizeToKB = function(size) {
Expand Down

0 comments on commit 57096c1

Please sign in to comment.