aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/webpack.server.js
diff options
context:
space:
mode:
authorilanap <ilanap@amdocs.com>2020-04-01 14:25:35 +0300
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-04-05 15:15:22 +0000
commit94e7778319778713c0b4e2ccf590cefc6e18c21e (patch)
treef43f71f3e6df12009809005006bba76b77e1792e /catalog-ui/webpack.server.js
parente6a4b30df9c1e712feacdacb04b205c9efd773bc (diff)
bugfix for operations screen
Add Operation Button is missing in Service management committing fix by Akiva Issue-ID: SDC-2843 Signed-off-by: ilanap <ilanap@amdocs.com> Change-Id: I9a6c89e45ea425eb9abf827906562e14a39cf1ff
Diffstat (limited to 'catalog-ui/webpack.server.js')
-rw-r--r--catalog-ui/webpack.server.js60
1 files changed, 50 insertions, 10 deletions
diff --git a/catalog-ui/webpack.server.js b/catalog-ui/webpack.server.js
index b3675773bf..0d43fa1d86 100644
--- a/catalog-ui/webpack.server.js
+++ b/catalog-ui/webpack.server.js
@@ -1,8 +1,20 @@
const mockApis = require('./configurations/mock.json').sdcConfig;
const proxy = require('http-proxy-middleware');
const devPort = 9000;
+
const fePort = 8181;
const feHost = "localhost";
+const protocol="http";
+const isDirectToFE = false;
+
+/*
+For kubernetes
+const fePort = 30207;
+const wfPort = 30256;
+const feHost = "kubernetes_master";
+const protocol="https";
+const isDirectToFE = true;// whether to proxy to the k8s proxy or to the BE
+*/
const portalCookieValue = "randomValue"; //for dev solely, in production - the webseal would add the cookie by itself.
module.exports = function (env) {
@@ -38,25 +50,36 @@ module.exports = function (env) {
];
// Redirect all '/sdc1/feProxy/rest' to feHost
+ let feProxyOptions = {
+ target: protocol + '://' + feHost + ':' + fePort,
+ changeOrigin: true,
+ secure: false,
+ logLevel: 'debug'
+ }
+ if (isDirectToFE) {
+ feProxyOptions.pathRewrite= {
+ '^/sdc1/feProxy/rest' : '/sdc1/feProxy/rest'
+ }
+ } else {
+ feProxyOptions.pathRewrite= {
+ '^/sdc1/feProxy/rest' : '/sdc2/rest'
+ }
+ }
middlewares.push(
- proxy(['/sdc1/feProxy/rest', '/sdc1/feProxy/uicache'], {
- target: 'http://' + feHost + ':' + fePort,
- changeOrigin: true,
- secure: false
- }));
+ proxy(['/sdc1/feProxy/rest'], feProxyOptions));
// Redirect all '/sdc1/rest' to feHost
middlewares.push(
- proxy(['/sdc1/rest'], {
- target: 'http://' + feHost + ':' + fePort,
+ proxy(['/sdc1/rest'],{
+ target: protocol + '://' + feHost + ':' + fePort,
changeOrigin: true,
secure: false
}));
// Redirect dcae urls to feHost
middlewares.push(
- proxy(['/dcae', '/sdc1/feProxy/dcae-api'], {
- target: 'http://' + feHost + ':' + fePort,
+ proxy(['/dcae','/sdc1/feProxy/dcae-api'], {
+ target: protocol + '://' + feHost + ':' + fePort,
changeOrigin: true,
secure: false,
onProxyRes: (proxyRes, req, res) => {
@@ -70,7 +93,7 @@ module.exports = function (env) {
// Redirect onboarding urls to feHost
middlewares.push(
proxy(['/onboarding', '/sdc1/feProxy/onboarding-api'], {
- target: 'http://' + feHost + ':' + fePort,
+ target: protocol + '://' + feHost + ':' + fePort,
changeOrigin: true,
secure: false,
onProxyRes: (proxyRes, req, res) => {
@@ -81,6 +104,23 @@ module.exports = function (env) {
}
}));
+ // Redirect workflow urls to feHost
+ middlewares.push(
+ proxy(['/sdc1/feProxy/wf', '/wf'], {
+ target: protocol + '://' + feHost + ':' + wfPort,
+ changeOrigin: true,
+ logLevel: 'debug',
+ secure: false,
+ pathRewrite: {
+ '^/sdc1/feProxy' : ''
+ },
+ onProxyRes: (proxyRes, req, res) => {
+ let setCookie = proxyRes.headers['set-cookie'];
+ if (setCookie) {
+ setCookie[0] = setCookie[0].replace(/\bSecure\b(; )?/, '');
+ }
+ }
+ }));
server.use(middlewares);
}
};