This repository has been archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ciao-cli: Update examples to use explicit source image
Rather that rely on the implicit creation of a storage resource derived from the image_id update the examples to make it explicit how to specify an image source. Signed-off-by: Rob Bradford <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
description: "Fedora VM no storage" | ||
vm_type: qemu | ||
fw_type: legacy | ||
image_id: "73a86d7e-93c0-480e-9c41-ab42f69b7799" | ||
defaults: | ||
vcpus: 2 | ||
mem_mb: 512 | ||
disk_mb: 1024 | ||
cloud_init: fedora_vm.yaml | ||
disks: | ||
- source: | ||
service: image | ||
id: "73a86d7e-93c0-480e-9c41-ab42f69b7799" | ||
ephemeral: true | ||
bootable: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
description: "Fedora VM with attached empty storage" | ||
vm_type: qemu | ||
fw_type: legacy | ||
image_id: "73a86d7e-93c0-480e-9c41-ab42f69b7799" | ||
defaults: | ||
vcpus: 2 | ||
mem_mb: 512 | ||
disk_mb: 1024 | ||
cloud_init: "fedora_vm.yaml" | ||
disks: | ||
- source: | ||
service: image | ||
id: "73a86d7e-93c0-480e-9c41-ab42f69b7799" | ||
bootable: true | ||
ephemeral: true | ||
- size: 20 | ||
ephemeral: true |