summaryrefslogtreecommitdiffstats
path: root/healthcheck-container/healthcheck.js
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 /healthcheck-container/healthcheck.js
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>
Diffstat (limited to 'healthcheck-container/healthcheck.js')
-rw-r--r--healthcheck-container/healthcheck.js6
1 files changed, 3 insertions, 3 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');