From 4b33e1e090f908b8bbfb2d106e3ff41151222b43 Mon Sep 17 00:00:00 2001 From: Sakis Date: Tue, 12 Apr 2022 13:12:36 +0300 Subject: [PATCH] Add internal routes These will be used by prometheus to scrape the `/metrics` endpoint. --- manifest.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.yml.j2 b/manifest.yml.j2 index 15bd72b05..86712beae 100644 --- a/manifest.yml.j2 +++ b/manifest.yml.j2 @@ -1,9 +1,9 @@ {%- set apps = { 'notify-admin': { 'routes': { - 'preview': ['www.notify.works'], - 'staging': ['www.staging-notify.works'], - 'production': ['www.notifications.service.gov.uk'], + 'preview': ['www.notify.works', 'notify-admin-preview.apps.internal'], + 'staging': ['www.staging-notify.works', 'notify-admin-staging.apps.internal'], + 'production': ['www.notifications.service.gov.uk', 'notify-admin-production.apps.internal'], } }, 'notify-admin-prototype': {},