mirror of https://github.com/portainer/portainer
96 lines
3.5 KiB
HTML
96 lines
3.5 KiB
HTML
<kubernetes-view-header title="Cluster" state="kubernetes.cluster" view-ready="ctrl.state.viewReady">
|
|
Cluster information
|
|
</kubernetes-view-header>
|
|
|
|
<kubernetes-view-loading view-ready="ctrl.state.viewReady"></kubernetes-view-loading>
|
|
|
|
<div ng-if="ctrl.state.viewReady">
|
|
<div class="row" ng-if="ctrl.isAdmin">
|
|
<div class="col-sm-12">
|
|
<rd-widget>
|
|
<rd-widget-body>
|
|
<!-- resource-reservation -->
|
|
<form class="form-horizontal" ng-if="ctrl.resourceReservation">
|
|
<kubernetes-resource-reservation
|
|
cpu="ctrl.resourceReservation.CPU"
|
|
cpu-limit="ctrl.CPULimit"
|
|
memory="ctrl.resourceReservation.Memory"
|
|
memory-limit="ctrl.MemoryLimit"
|
|
description="Resource reservation represents the total amount of resource assigned to all the applications inside the cluster."
|
|
>
|
|
</kubernetes-resource-reservation>
|
|
</form>
|
|
<!-- !resource-reservation -->
|
|
|
|
<!-- cluster-status -->
|
|
<div class="col-sm-12 form-section-title">
|
|
Cluster status
|
|
</div>
|
|
|
|
<table class="table">
|
|
<tbody>
|
|
<tr class="text-muted">
|
|
<td style="border-top: none; width: 25%;">Component</td>
|
|
<td style="border-top: none; width: 25%;">Status</td>
|
|
<td style="border-top: none; width: 50%;" ng-if="ctrl.hasUnhealthyComponentStatus">Error</td>
|
|
</tr>
|
|
<tr ng-repeat="cs in ctrl.componentStatuses">
|
|
<td style="width: 25%;">
|
|
{{ cs.ComponentName }}
|
|
</td>
|
|
<td style="width: 25%;">
|
|
<span ng-if="cs.Healthy"><i class="fa fa-check green-icon" aria-hidden="true" style="margin-right: 2px;"></i> healthy</span>
|
|
<span ng-if="!cs.Healthy"><i class="fa fa-exclamation-circle orange-icon" aria-hidden="true" style="margin-right: 2px;"></i> unhealthy</span>
|
|
</td>
|
|
<td ng-if="ctrl.hasUnhealthyComponentStatus" style="width: 50%;">
|
|
{{ cs.ErrorMessage !== '' ? cs.ErrorMessage : '-' }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- !cluster-status -->
|
|
|
|
<!-- leader-status -->
|
|
<div ng-if="ctrl.systemEndpoints.length > 0">
|
|
<div class="col-sm-12 form-section-title">
|
|
Leader status
|
|
</div>
|
|
|
|
<table class="table">
|
|
<tbody>
|
|
<tr class="text-muted">
|
|
<td style="border-top: none; width: 25%;">Component</td>
|
|
<td style="border-top: none; width: 25%;">Leader node</td>
|
|
</tr>
|
|
<tr ng-repeat="ep in ctrl.systemEndpoints">
|
|
<td style="width: 25%;">
|
|
{{ ep.Name }}
|
|
</td>
|
|
<td style="width: 25%;">
|
|
{{ ep.HolderIdentity }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<!-- !leader-status -->
|
|
</rd-widget-body>
|
|
</rd-widget>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<kubernetes-nodes-datatable
|
|
title-text="Nodes"
|
|
title-icon="fa-hdd"
|
|
dataset="ctrl.nodes"
|
|
table-key="kubernetes.nodes"
|
|
order-by="Name"
|
|
refresh-callback="ctrl.getNodes"
|
|
is-admin="ctrl.isAdmin"
|
|
></kubernetes-nodes-datatable>
|
|
</div>
|
|
</div>
|
|
</div>
|