...
Deployment using Helm (introduced in Honolulu Release)
< Instructions > - Work in progress
Download the charts (all the files and directories) from git with below link
https://git.onap.org/dcaegen2/platform/tree/mod2/assembly/helm
Under components/catalog-service, update K8SNodeip and PASSWORD for policy framework deployment and DCAE Dashboard deployment and verify other configuration values in values,yaml
policyModelDevServer: "<K8SNodeip>"
policyModelDevPort: "30522"
policyModelDevUser: "healthcheck"
policyModelDevPassword: "<PASSWORD>"
dcaePlatformDevServer: "<K8SNodeip>"
dcaePlatformDevPort: "30418"
dcaePlatformDevUser: "su1234"
dcaePlatformDevPassword: "<PASSWORD>"
Under components/ui, update K8SNodeip for master node in values.yaml
dcaeHostname: <K8SNodeip>
After updating the above configurations, run below command from the parent directory to generate the charts with all dependencies.
helm dep update
Working with UI
After deploying the mod2 components using docker compose or helm charts, UI will be available in below URL where hostname would be the hostname or IP address of the deployed VM
https:// <hostname>:30997 (or the port configured in the helm chart)
Initial user/password would be set to admin/admin@mod.
...