Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ MAAS (Metal as a Service) is Canonical's bare-metal provisioning tool. CanvOS ca
```shell
OS_DISTRIBUTION=ubuntu
OS_VERSION=22 # or 20, 24, etc.
OS_VERSION=22 # or 24
ARCH=amd64
```
Expand Down Expand Up @@ -487,6 +487,17 @@ The output includes:
- Select the `.raw.gz` file
- Specify format as `dd.gz`
- MAAS will automatically decompress the image during upload
Or
Use maas command to upload the custom image to MAAS
Example:
maas login admin http://<MAAS_URL>:5240/MAAS <API_KEY>
maas admin boot-resources create \
name='custom/my-raw-image' \
title='My Custom RAW Image' \
architecture='amd64/generic' \
filetype='ddgz' \
content@=/path/to/image.raw.gz
2. The image is now ready to be deployed to bare-metal servers via MAAS.
Expand Down