65 lines
1.8 KiB
Handlebars
65 lines
1.8 KiB
Handlebars
<ListCollection @items={{items}} class="consul-upstream-list" as |item index|>
|
|
<BlockSlot @name="header">
|
|
{{#if (service/exists item)}}
|
|
<dl class={{service/health-checks item}}>
|
|
<dt>
|
|
Health
|
|
</dt>
|
|
<dd>
|
|
<Tooltip @position="top-start">
|
|
{{#if (eq 'critical' (service/health-checks item))}}
|
|
At least one health check on one instance is failing.
|
|
{{else if (eq 'warning' (service/health-checks item))}}
|
|
At least one health check on one instance has a warning.
|
|
{{else if (eq 'passing' (service/health-checks item))}}
|
|
All health checks are passing.
|
|
{{else}}
|
|
There are no health checks.
|
|
{{/if}}
|
|
</Tooltip>
|
|
</dd>
|
|
</dl>
|
|
{{#if (and (env 'CONSUL_NSPACES_ENABLED') (not-eq item.Namespace nspace))}}
|
|
<a data-test-service-name href={{href-to 'nspace.dc.services.show' (concat '~' item.Namespace) dc item.Name }}>
|
|
{{item.Name}}
|
|
</a>
|
|
{{else}}
|
|
<a data-test-service-name href={{href-to 'dc.services.show' item.Name}}>
|
|
{{item.Name}}
|
|
</a>
|
|
{{/if}}
|
|
{{else}}
|
|
<p data-test-service-name>
|
|
{{item.Name}}
|
|
</p>
|
|
{{/if}}
|
|
</BlockSlot>
|
|
<BlockSlot @name="details">
|
|
{{#if (and (env 'CONSUL_NSPACES_ENABLED') (not-eq item.Namespace nspace))}}
|
|
<dl class="nspace">
|
|
<dt>
|
|
<Tooltip>
|
|
Namespace
|
|
</Tooltip>
|
|
</dt>
|
|
<dd>
|
|
{{item.Namespace}}
|
|
</dd>
|
|
</dl>
|
|
{{/if}}
|
|
{{#if (gt item.GatewayConfig.Addresses.length 0)}}
|
|
{{#each item.GatewayConfig.Addresses as |address|}}
|
|
<dl>
|
|
<dt>
|
|
<CopyButton
|
|
@value={{address}}
|
|
@name="Address"
|
|
/>
|
|
</dt>
|
|
<dd>{{address}}</dd>
|
|
</dl>
|
|
{{/each}}
|
|
{{/if}}
|
|
</BlockSlot>
|
|
</ListCollection>
|