1 2 3 4 5 6 7 8 9 10 11 12 13
|
<div ng-if="nodeCondition(item, 'Ready').status && nodeCondition(item, 'Ready').status != 'True'" class="alert alert-danger" ng-class="{'node-alert' : target}">
<span class="pficon pficon-error-circle-o"></span>
<strong>{{ nodeCondition(item, 'Ready').message }}</strong>
</div>
<div ng-if="nodeCondition(item, 'OutOfDisk').status == 'True'" class="alert alert-warning" ng-class="{'node-alert' : target}">
<span class="pficon pficon-warning-triangle-o"></span>
<strong translate>The node doesn't have enough disk space</strong>.
</div>
<div ng-if="nodeCondition(item, 'OutOfMemory').status == 'True'" class="alert alert-warning" ng-class="{'node-alert' : target}">
<span class="pficon pficon-warning-triangle-o"></span>
<strong translate>The node doesn't have enough free memory</strong>.
</div>
</div>
|