https://github.com/opennebula/certified-hardware-ampere
https://github.com/opennebula/certified-hardware-ampere
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/opennebula/certified-hardware-ampere
- Owner: OpenNebula
- License: apache-2.0
- Created: 2025-06-09T10:44:43.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-07-10T12:53:23.000Z (11 months ago)
- Last Synced: 2025-07-10T18:05:58.979Z (11 months ago)
- Language: Makefile
- Size: 19.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
**TBA-cloud-provider**: logos of OpenNebula and the Cloud Provider
# Deploying OpenNebula on Ampere Hardware
This 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.
- [Requirements](#requirements)
- [Hardware Specifications](#hardware-specifications)
- [Required Parameters](#required-parameters)
- [Deployment and Validation](#deployment-and-validation)
## Requirements
1. Install `hatch`
```shell
pip install hatch
```
1. Initialize the dependent `one-deploy-validation` and `one-deploy` submodule
```shell
git submodule update --init --remote --merge
```
1. Install the `opennebula.deploy` collection with dependencies using the submodule's tooling:
```shell
make submodule-requirements
```
## Hardware Specifications
See 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/).
After the servers have been provisioned, take note of the required parameters that are required for automation of OpenNebula deployment and validation.
## Required Parameters
Update the [inventory](./inventory/) values to match the provisioned infrastructure.
| Description | Variable Names | Files/Location |
|---------------------------------------------|-------------------------------------|-----------------------------------------------------|
| Frontend Host IP | `ansible_host` | [inventory/ampere.yml](./inventory/ampere.yml) |
| KVM Host IPs | `ansible_host` | [inventory/ampere.yml](./inventory/ampere.yml) |
| VXLAN PHYDEV | `vn.vxlan.template.PHYDEV` | [inventory/ampere.yml](./inventory/ampere.yml) |
| GUI password of `oneadmin` | `one_pass` | [inventory/ampere.yml](./inventory/ampere.yml) |
**Optional customization parameters**:
| Description | Variable Names | Files/Location |
|---------------------------------------------|-------------------------------------|-----------------------------------------------------|
| VXLAN Starting IP | `vn.vxlan.template.AR.IP` | [inventory/ampere.yml](./inventory/ampere.yml) |
| VXLAN IP range size | `vn.vxlan.template.AR.SIZE` | [inventory/ampere.yml](./inventory/ampere.yml) |
## Deployment and Validation
Use the provided Makefile commands to automate deployment and testing:
1. Review the [inventory](./inventory/) and [playbooks](./playbooks/) directories, following Ansible design guidelines.
1. Deploy OpenNebula:
```shell
make deployment
```
1. Configure the deployment for the specifics of ARM64 architecture of Ampere servers:
```shell
make specifics
```
1. Verify the deployment:
```shell
make validation
```
For 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).