From 480dca57437ebbc4071f04f95b167966d45babb8 Mon Sep 17 00:00:00 2001 From: Ankit Bhardwaj Bhardwaj Date: Wed, 13 Nov 2024 14:07:24 +0530 Subject: [PATCH] INFRA-4009 | Ankit Bhardwaj | add external gateway for IAPL prod (#718) --- src/constants/CommonApiGatewayUrl.tsx | 1 + src/coreform/deployment/ApiGatewayForm.tsx | 1 + src/coreform/deployment/constants.tsx | 1 + 3 files changed, 3 insertions(+) diff --git a/src/constants/CommonApiGatewayUrl.tsx b/src/constants/CommonApiGatewayUrl.tsx index 8f109c5..12f8461 100644 --- a/src/constants/CommonApiGatewayUrl.tsx +++ b/src/constants/CommonApiGatewayUrl.tsx @@ -24,6 +24,7 @@ export class ExternalCommonApiGatewayUrl { 'qa-external-gateway.np.navi-ppl.in', ]; public static readonly PPL_PROD = ['external-gateway.prod.navi-ppl.in']; + public static readonly IAPL_PROD = ['external-gateway.prod.navi-iapl.in']; } export class InternalCommonApiGatewayUrl { diff --git a/src/coreform/deployment/ApiGatewayForm.tsx b/src/coreform/deployment/ApiGatewayForm.tsx index 6ff4404..f9a9975 100644 --- a/src/coreform/deployment/ApiGatewayForm.tsx +++ b/src/coreform/deployment/ApiGatewayForm.tsx @@ -51,6 +51,7 @@ const ExternalCommonApiGatewayUrlMap = { [Cluster.SA_PROD]: ExternalCommonApiGatewayUrl.SA_PROD, [Cluster.PPL_NONPROD]: ExternalCommonApiGatewayUrl.PPL_NP, [Cluster.PPL_PROD]: ExternalCommonApiGatewayUrl.PPL_PROD, + [Cluster.IAPL_PROD]: ExternalCommonApiGatewayUrl.IAPL_PROD, }; const InternalCommonApiGatewayUrlMap = { diff --git a/src/coreform/deployment/constants.tsx b/src/coreform/deployment/constants.tsx index 16064ff..ef1a66a 100644 --- a/src/coreform/deployment/constants.tsx +++ b/src/coreform/deployment/constants.tsx @@ -96,4 +96,5 @@ export const ciliumEnabledCluster = new Set([ Cluster.PPL_PROD, Cluster.SA_PROD, Cluster.LENDING_PROD, + Cluster.IAPL_PROD, ]);