{"id":29434381,"url":"https://github.com/opennebula/certified-hardware-ampere","last_synced_at":"2026-02-04T06:33:16.570Z","repository":{"id":303959536,"uuid":"998844793","full_name":"OpenNebula/certified-hardware-ampere","owner":"OpenNebula","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-10T12:53:23.000Z","size":20,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-10T18:05:58.979Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"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/OpenNebula.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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,"zenodo":null}},"created_at":"2025-06-09T10:44:43.000Z","updated_at":"2025-07-10T12:53:27.000Z","dependencies_parsed_at":"2025-07-10T18:16:59.010Z","dependency_job_id":"551f54ec-1280-4e53-9be2-3d8a5e3f273c","html_url":"https://github.com/OpenNebula/certified-hardware-ampere","commit_stats":null,"previous_names":["opennebula/certified-hardware-ampere"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/OpenNebula/certified-hardware-ampere","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenNebula%2Fcertified-hardware-ampere","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenNebula%2Fcertified-hardware-ampere/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenNebula%2Fcertified-hardware-ampere/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenNebula%2Fcertified-hardware-ampere/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenNebula","download_url":"https://codeload.github.com/OpenNebula/certified-hardware-ampere/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenNebula%2Fcertified-hardware-ampere/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265080256,"owners_count":23708121,"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":[],"created_at":"2025-07-13T02:16:00.574Z","updated_at":"2026-02-04T06:33:16.484Z","avatar_url":"https://github.com/OpenNebula.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"**TBA-cloud-provider**: logos of OpenNebula and the Cloud Provider\n\n# Deploying OpenNebula on Ampere Hardware\n\nThis repository contains the needed code and documentation to perform an OpenNebula deployment and configuration on Ampere hardware. It extends the [one-deploy-validation](https://github.com/OpenNebula/one-deploy-validation) repository, which is added as a git submodule.\n\n- [Requirements](#requirements)\n- [Hardware Specifications](#hardware-specifications)\n- [Required Parameters](#required-parameters)\n- [Deployment and Validation](#deployment-and-validation)\n\n## Requirements\n\n1. Install `hatch`\n\n   ```shell\n   pip install hatch\n   ```\n\n1. Initialize the dependent `one-deploy-validation` and `one-deploy` submodule\n\n   ```shell\n   git submodule update --init --remote --merge\n   ```\n\n1. Install the `opennebula.deploy` collection with dependencies using the submodule's tooling:\n\n   ```shell\n   make submodule-requirements\n   ```\n\n## Hardware Specifications\n\nSee the details of the Ampere servers that has been used to certify the hardware platform for OpenNebula deployment: [Ampere OpenNebula](https://docs.opennebula.io/7.0/solutions/certified_hw_platforms/ampere_opennebula/). \nAfter the servers have been provisioned, take note of the required parameters that are required for automation of OpenNebula deployment and validation.\n\n## Required Parameters\n\nUpdate the [inventory](./inventory/) values to match the provisioned infrastructure.\n\n| Description                                 | Variable Names                      | Files/Location                                      |\n|---------------------------------------------|-------------------------------------|-----------------------------------------------------|\n| Frontend Host IP                            | `ansible_host`                      | [inventory/ampere.yml](./inventory/ampere.yml)    | \n| KVM Host IPs                            | `ansible_host`                      | [inventory/ampere.yml](./inventory/ampere.yml)     | \n| VXLAN PHYDEV                                 | `vn.vxlan.template.PHYDEV`          | [inventory/ampere.yml](./inventory/ampere.yml)                               | \n| GUI password of `oneadmin`       | `one_pass` | [inventory/ampere.yml](./inventory/ampere.yml)           | \n\n**Optional customization parameters**:\n| Description                                 | Variable Names                      | Files/Location                                      |\n|---------------------------------------------|-------------------------------------|-----------------------------------------------------|\n| VXLAN Starting IP                                 | `vn.vxlan.template.AR.IP`          | [inventory/ampere.yml](./inventory/ampere.yml)                               | \n| VXLAN IP range size                                 | `vn.vxlan.template.AR.SIZE`          | [inventory/ampere.yml](./inventory/ampere.yml)                               | \n\n## Deployment and Validation\n\nUse the provided Makefile commands to automate deployment and testing:\n\n1. Review the [inventory](./inventory/) and [playbooks](./playbooks/) directories, following Ansible design guidelines.\n\n1. Deploy OpenNebula:\n\n   ```shell\n   make deployment\n   ```\n\n1. Configure the deployment for the specifics of ARM64 architecture of Ampere servers:\n\n   ```shell\n   make specifics\n   ```\n\n1. Verify the deployment:\n\n   ```shell\n   make validation\n   ```\n\nFor more information about the submodule's tooling, refer to its [README.md](https://github.com/OpenNebula/one-deploy-validation/blob/master/README.md) and for detailed documentation on the deployment automation refer to the [one-deploy repo](https://github.com/OpenNebula/one-deploy).\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopennebula%2Fcertified-hardware-ampere","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopennebula%2Fcertified-hardware-ampere","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopennebula%2Fcertified-hardware-ampere/lists"}