open-consul/ui-v2/app/templates/dc/services/show/upstreams.hbs

17 lines
566 B
Handlebars
Raw Normal View History

<div id="upstreams" class="tab-section">
<div role="tabpanel">
{{#if (gt gatewayServices.length 0)}}
<section>
<p>
Upstreams are services that may receive traffic from this gateway. Learn more about configuring gateways in our <a href="{{env 'CONSUL_DOCS_URL'}}/connect/ingress-gateway" target="_blank" rel="noopener noreferrer">documentation</a>.
</p>
2020-06-17 09:25:54 +00:00
<ConsulUpstreamList @items={{gatewayServices}} @dc={{dc}} @nspace={{nspace}} />
</section>
{{else}}
<p>
There are no upstreams.
</p>
{{/if}}
</div>
</div>