From f15292dd1b262f0a4300c3e7a5bdc5430a6f2a63 Mon Sep 17 00:00:00 2001 From: Avi Ziv Date: Mon, 31 Jul 2017 15:50:46 +0300 Subject: [SDC] fix health check Change-Id: Ie82b9d1f6c2c617107114670da24ca7ac873c0cc Signed-off-by: Avi Ziv --- openecomp-ui/external-resources/healthcheck/healthcheck | 11 +++++++++++ openecomp-ui/external-resources/healthcheck/healthcheck.json | 11 ----------- openecomp-ui/gulpfile.js | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 openecomp-ui/external-resources/healthcheck/healthcheck delete mode 100644 openecomp-ui/external-resources/healthcheck/healthcheck.json diff --git a/openecomp-ui/external-resources/healthcheck/healthcheck b/openecomp-ui/external-resources/healthcheck/healthcheck new file mode 100644 index 0000000000..e17838f246 --- /dev/null +++ b/openecomp-ui/external-resources/healthcheck/healthcheck @@ -0,0 +1,11 @@ +{ + "sdcVersion": "{VERSION}", + "componentsInfo": [ + { + "healthCheckComponent": "FE", + "healthCheckStatus": "UP", + "version": "{VERSION}", + "description": "OK" + } + ] +} diff --git a/openecomp-ui/external-resources/healthcheck/healthcheck.json b/openecomp-ui/external-resources/healthcheck/healthcheck.json deleted file mode 100644 index e17838f246..0000000000 --- a/openecomp-ui/external-resources/healthcheck/healthcheck.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "sdcVersion": "{VERSION}", - "componentsInfo": [ - { - "healthCheckComponent": "FE", - "healthCheckStatus": "UP", - "version": "{VERSION}", - "description": "OK" - } - ] -} diff --git a/openecomp-ui/gulpfile.js b/openecomp-ui/gulpfile.js index 68fd253346..6d45a0b374 100644 --- a/openecomp-ui/gulpfile.js +++ b/openecomp-ui/gulpfile.js @@ -33,7 +33,7 @@ const path = { svgSrc: './resources/images/svg/*.svg', appinf: './webapp-onboarding/**/*.*', jetty: './webapp-onboarding/WEB-INF/jetty-web.xml', - healthCheckInput: './external-resources/healthcheck/healthcheck.json', + healthCheckInput: './external-resources/healthcheck/healthcheck', srcDir: './src/', // output output: dist, @@ -42,7 +42,7 @@ const path = { appinf_output: dist + '/webapp-onboarding', healthCheckOutput: dist + '/v1.0', // war - war: [dist + '/index.html', dist + '/punch-outs*.js', dist + '/**/*.{css,png,svg,eot,ttf,woff,woff2,otf}', dist + '/**/*(config.json)', dist + '/webapp-onboarding/**', dist + '/**/*(healthcheck.json)'], + war: [dist + '/index.html', dist + '/punch-outs*.js', dist + '/**/*.{css,png,svg,eot,ttf,woff,woff2,otf}', dist + '/**/*(config.json)', dist + '/webapp-onboarding/**', dist + '/**/*(healthcheck)'], heatWar: [dist + '/heat.html', dist + '/heat-validation_en.js', dist + '/**/*.{css,png,svg,eot,ttf,woff,woff2,otf}', dist + '/**/*(config.json)', 'webapp-heat-validation/**'], wardest: dist, // storybook -- cgit 1.2.3-korg