Install Laniakea dashboard (database version) ============================================== Create the file ``indigopaas-deploy/ansible/inventory/group_vars/orchestrator-dashboard.yaml`` with the following configured values: :: dashboard_fqdn: dashboard_image_name: laniakeacloud/laniakea-dashboard:withDB dashboard_iam_issuer: "https:///" dashboard_iam_client_id: "'" dashboard_iam_client_secret: "" dashboard_orchestrator_url: "https:///orchestrator" dashboard_slam_url: "https://:8443" dashboard_cmdb_url: "https:///cmdb" dashboard_im_url: "https:///im" dashboard_tosca_template_repository_url: https://github.com/Laniakea-elixir-it/laniakea-dashboard-config.git dashboard_tosca_template_repository_dir: "/opt/laniakea-dashboard-config" dashboard_tosca_templates_dir: "/opt/laniakea-dashboard-config/tosca-templates" dashboard_tosca_parameters_dir: "/opt/laniakea-dashboard-config/tosca-parameters" dashboard_tosca_metadata_dir: "/opt/laniakea-dashboard-config/tosca-metadata" dashboard_administrators: "['']" dashboard_letsencrypt_email: "" dashboard_enable_db: True dashboard_db_sql_file_url: "https://raw.githubusercontent.com/Laniakea-elixir-it/orchestrator-dashboard/laniakea-stable/utils/orchestrator_dashboard.sql" dashboard_mysql_root_password: ****** dashboard_db_password: ****** .. warning:: Depending on your Cloud Provider network configuration, the database IP address needs to be further configured, for example using the private ip address associated to the VM, when a floating IP is used. In this case it is possible to set the database IP address adding: :: dashboard_db_host: '' .. warning:: Set also your custom mysql password with: ``dashboard_mysql_root_password`` and ``dashboard_mysql_password``. Run the role using the ``ansible-playbook`` command: :: # cd indigopaas-deploy/ansible # ansible-playbook -i inventory/inventory playbooks/deploy-orchestrator-dashboard.yml