File: node-alerts.html

package info (click to toggle)
cockpit 188-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 119,768 kB
  • sloc: ansic: 66,833; xml: 5,776; python: 3,122; sh: 2,322; makefile: 1,289; sed: 7
file content (13 lines) | stat: -rw-r--r-- 815 bytes parent folder | download | duplicates (3)
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>