A practical, short path to try OpenCHAMI on a lab cluster or sandbox.
You want to try OpenCHAMI without a long project. This guide walks you through a small, safe deployment that fits a weekend. You will deploy core services, register a few nodes, and power one on. If it works for you, you can grow from here.
You will run a handful of services with docker-compose. You will have inventory, boot scripts, and a simple way to control a node. You will also have a clean place to put secrets.
Pick a small test area. One head node or VM host is enough. A couple of bare-metal nodes or VMs help you test power and boot. Make sure your user can run Docker.
Step 1: get the files Clone the deployment recipes. They hold compose files and sane defaults.
git clone https://github.com/OpenCHAMI/deployment-recipes.git && cd deployment-recipesStep 2: bring up services Use compose to start the core set. This spins up SMD, BSS, and helpers.
docker compose up -dStep 3: add inventory Tell SMD about a node or two. You can do this by discovery or by hand.
curl -X POST http://localhost:27779/v1/nodes -d '{"xname":"x0c0s1b0n0","role":"compute"}' -H 'Content-Type: application/json'Step 4: set a boot config Point a node at a known-good kernel and initrd. Keep it simple for your first run.
curl -X POST http://localhost:28080/v1/boot -d '{"xname":"x0c0s1b0n0","kernel":"https://example.org/kernel","initrd":"https://example.org/initrd"}' -H 'Content-Type: application/json'Try a PXE boot on your test node. Watch the BSS logs. If it asks for a boot script, you are close. If not, check DHCP and cabling.
Add Magellan to discover BMCs and PDUs and send inventory to SMD. Then wire a power tool that reads from SMD and issues Redfish calls. This gives you a clean loop: discover, record, power, boot.
This weekend deploy is not a full site. It is a small, safe start. It helps you see OpenCHAMI in your environment and find gaps early. From here, you can scale services, move to managed databases, and add auth.
Ready to try OpenCHAMI?