summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lucas <jflucas@research.att.com>2019-07-25 14:30:12 -0400
committerJack Lucas <jflucas@research.att.com>2019-07-25 14:30:21 -0400
commitef4ae30a2c4348e18354761f56672df22bf98142 (patch)
tree18c0f1839742a7b825569d417e946caf3473d594
parentffb4c7176c449c96a4bdbb43aa5a0c86e0aafdd4 (diff)
Treat dashboard as Helm-deployed component5.0.0-ONAP
Health check looked for dashboard as a Cloudify-deployed component, but in El Alto Early Drop, dashboard is deployed by Helm. This commit changes how the health check looks for the dashboard k8s deployment. Issue-ID: DCAEGEN2-1688 Change-Id: Ie3d87e8083d35fa689ea17f6d8cb20a59bf66271 Signed-off-by: Jack Lucas <jflucas@research.att.com>
-rw-r--r--healthcheck-container/healthcheck.js6
-rw-r--r--healthcheck-container/pom.xml2
2 files changed, 4 insertions, 4 deletions
diff --git a/healthcheck-container/healthcheck.js b/healthcheck-container/healthcheck.js
index 33bb848..1156ff5 100644
--- a/healthcheck-container/healthcheck.js
+++ b/healthcheck-container/healthcheck.js
@@ -31,7 +31,8 @@ const helmDeps =
'dcae-inventory-api',
'dcae-servicechange-handler',
'dcae-deployment-handler',
- 'dcae-policy-handler'
+ 'dcae-policy-handler',
+ 'dcae-dashboard'
];
// List of deployments expected to be created by CM at boot time
@@ -40,8 +41,7 @@ const bootDeps =
'dep-dcae-ves-collector',
'dep-dcae-tca-analytics',
'dep-dcae-prh',
- 'dep-dcae-hv-ves-collector',
- 'dep-dcae-dashboard'
+ 'dep-dcae-hv-ves-collector'
];
const status = require('./get-status');
diff --git a/healthcheck-container/pom.xml b/healthcheck-container/pom.xml
index abc7965..d5f30a1 100644
--- a/healthcheck-container/pom.xml
+++ b/healthcheck-container/pom.xml
@@ -27,7 +27,7 @@ limitations under the License.
<groupId>org.onap.dcaegen2.deployments</groupId>
<artifactId>healthcheck-container</artifactId>
<name>dcaegen2-deployments-healthcheck-container</name>
- <version>1.2.4</version>
+ <version>1.2.5</version>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>