17 lines
571 B
Handlebars
17 lines
571 B
Handlebars
<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.html" target="_blank" rel="noopener noreferrer">documentation</a>.
|
|
</p>
|
|
<ConsulUpstreamList @items={{gatewayServices}} @dc={{dc}} @nspace={{nspace}} />
|
|
</section>
|
|
{{else}}
|
|
<p>
|
|
There are no upstreams.
|
|
</p>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|