INFRA-4009 | Ankit Bhardwaj | add external gateway for IAPL prod (#718)

This commit is contained in:
Ankit Bhardwaj Bhardwaj
2024-11-13 14:07:24 +05:30
committed by GitHub
parent 218d07edfb
commit 480dca5743
3 changed files with 3 additions and 0 deletions

View File

@@ -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 {

View File

@@ -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 = {

View File

@@ -96,4 +96,5 @@ export const ciliumEnabledCluster = new Set([
Cluster.PPL_PROD,
Cluster.SA_PROD,
Cluster.LENDING_PROD,
Cluster.IAPL_PROD,
]);