{"id":20111316,"url":"https://github.com/openstack/masakari","last_synced_at":"2025-04-13T00:49:34.089Z","repository":{"id":66174754,"uuid":"61782314","full_name":"openstack/masakari","owner":"openstack","description":"Virtual Machine High Availability (VMHA) service for OpenStack. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-04-02T10:50:22.000Z","size":1640,"stargazers_count":60,"open_issues_count":0,"forks_count":26,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-13T00:49:29.592Z","etag":null,"topics":["service"],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/masakari","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openstack.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-06-23T06:57:38.000Z","updated_at":"2025-03-21T05:57:02.000Z","dependencies_parsed_at":"2023-12-26T04:35:04.013Z","dependency_job_id":"d25c47fd-0e28-4e24-8bf2-ee73e4db860d","html_url":"https://github.com/openstack/masakari","commit_stats":{"total_commits":453,"total_committers":101,"mean_commits":4.485148514851486,"dds":0.8366445916114791,"last_synced_commit":"4bba1d67b41b62b52fed17c8b896a57b9a026ef7"},"previous_names":[],"tags_count":81,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fmasakari","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fmasakari/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fmasakari/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fmasakari/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/masakari/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248650436,"owners_count":21139672,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["service"],"created_at":"2024-11-13T18:15:33.128Z","updated_at":"2025-04-13T00:49:34.070Z","avatar_url":"https://github.com/openstack.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"========\nMasakari\n========\n\nVirtual Machine High Availability (VMHA) service for OpenStack\n\nMasakari provides Virtual Machine High Availability (VMHA) service\nfor OpenStack clouds by automatically recovering the KVM-based Virtual\nMachine(VM)s from failure events such as VM process down,\nprovisioning process down, and nova-compute host failure.\nIt also provides API service for manage and control the automated\nrescue mechanism.\n\nNOTE:\nUse masakari only if instance path is configured on shared storage system\ni.e, 'instances_path' config option of nova has a path of shared directory\notherwise instance data will be lost after the evacuation of instance from\nfailed host if,\n* instance is booted from image\n* flavor using ephemeral disks is used\n\nOriginal version of Masakari: https://github.com/ntt-sic/masakari\n\nTokyo Summit Session: https://www.youtube.com/watch?v=BmjNKceW_9A\n\nMasakari is distributed under the terms of the Apache License,\nVersion 2.0. The full terms and conditions of this license are\ndetailed in the LICENSE file.\n\n* Free software: Apache license 2.0\n* Documentation: https://docs.openstack.org/masakari/latest\n* Release notes: https://docs.openstack.org/releasenotes/masakari/\n* Source: https://opendev.org/openstack/masakari\n* Bugs: https://bugs.launchpad.net/masakari\n\n\nConfigure masakari-api\n----------------------\n\n#. Create masakari user:\n\n   .. code-block:: shell-session\n\n      openstack user create --password-prompt masakari\n      (give password as masakari)\n\n#. Add admin role to masakari user:\n\n   .. code-block:: shell-session\n\n      openstack role add --project service --user masakari admin\n\n#. Create new service:\n\n   .. code-block:: shell-session\n\n      openstack service create --name masakari --description \"masakari high availability\" instance-ha\n\n#. Create endpoint for masakari service:\n\n   .. code-block:: shell-session\n\n      openstack endpoint create --region RegionOne masakari --publicurl http://\u003cip-address\u003e:\u003cport\u003e/v1/%\\(tenant_id\\)s\n\n#. Clone masakari using\n\n   .. code-block:: shell-session\n\n      git clone https://github.com/openstack/masakari.git\n\n#. Run setup.py from masakari\n\n   .. code-block:: shell-session\n\n      sudo python setup.py install\n\n#. Create directory ``/etc/masakari``\n\n#. Copy ``masakari.conf``, ``api-paste.ini`` and ``policy.yaml`` file\n   from ``masakari/etc/`` to ``/etc/masakari`` folder\n\n#. To run masakari-api simply use following binary:\n\n   .. code-block:: shell-session\n\n      masakari-api\n\nConfigure masakari database\n---------------------------\n\n#. Create 'masakari' database\n\n#. After running setup.py for masakari (``sudo python setup.py install``),\n   run ``masakari-manage`` command to sync the database\n\n   .. code-block:: shell-session\n\n      masakari-manage db sync\n\nFeatures\n--------\n\n* TODO\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fmasakari","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fmasakari","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fmasakari/lists"}