diff --git a/.changelog/15324.txt b/.changelog/15324.txt new file mode 100644 index 000000000..2fb6363db --- /dev/null +++ b/.changelog/15324.txt @@ -0,0 +1,3 @@ +```release-note:improvement +ui: add consul connect service upstream and on-update info to the service sidebar +``` diff --git a/ui/app/components/allocation-service-sidebar.hbs b/ui/app/components/allocation-service-sidebar.hbs index a60488d21..5e6b698c6 100644 --- a/ui/app/components/allocation-service-sidebar.hbs +++ b/ui/app/components/allocation-service-sidebar.hbs @@ -41,6 +41,14 @@
On Update | +{{@service.onUpdate}} | +
Upstreams | ++ {{#each + @service.connect.sidecarService.proxy.upstreams as |upstream| + }} + {{upstream.destinationName}}:{{upstream.localBindPort}} + {{/each}} + | +
diff --git a/ui/app/templates/allocations/allocation/index.hbs b/ui/app/templates/allocations/allocation/index.hbs
index 65650c523..64b70e114 100644
--- a/ui/app/templates/allocations/allocation/index.hbs
+++ b/ui/app/templates/allocations/allocation/index.hbs
@@ -301,6 +301,9 @@