createhdds/hdds.json
Adam Williamson de21570de9 Bump minimal image size again (but stealth this time)
We need minimal to be 18GB now, because we're booting from it for
the Workstation live image build test. Not doing a version bump
as they turn out to be a bit of a pain to deal with, I should
enhance that somehow.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2019-02-01 09:18:06 +00:00

187 lines
5.0 KiB
JSON

{
"guestfs" : [
{
"name" : "full",
"size" : "10G",
"labels" : ["mbr", "gpt"],
"parts" : [
{
"filesystem" : "ext4",
"type" : "p",
"start" : "4096",
"end" : "10485760"
},
{
"filesystem" : "ext4",
"type" : "p",
"start" : "10485761",
"end" : "-4097"
}
],
"writes" : [
{
"part" : "1",
"path" : "/testfile",
"content" : "Hello, world!"
},
{
"part" : "2",
"path" : "/testfile",
"content" : "Oh, hi Mark"
}
]
},
{
"name" : "freespace",
"size" : "10G",
"labels" : ["mbr", "gpt"],
"parts" : [
{
"filesystem" : "ext4",
"type" : "p",
"start" : "4096",
"end" : "2097152"
}
],
"writes" : [
{
"part" : "1",
"path" : "/testfile",
"content" : "Hello, world!"
}
]
},
{
"name" : "ks",
"size" : "100M",
"imgver" : "3",
"parts" : [
{
"filesystem" : "ext4",
"type" : "p",
"start" : "4096",
"end" : "-1"
}
],
"uploads" : [
{
"part" : "1",
"target" : "/root-user-crypted-net.ks",
"source" : "root-user-crypted-net.ks"
},
{
"part" : "1",
"target" : "/freeipa.ks",
"source" : "freeipa.ks"
},
{
"part" : "1",
"target" : "/freeipaclient.ks",
"source" : "freeipaclient.ks"
}
]
},
{
"name" : "updates_img",
"size" : "100M",
"imgver" : "2",
"parts" : [
{
"filesystem" : "ext4",
"label" : "UPDATES_IMG",
"type" : "p",
"start" : "4096",
"end" : "-1"
}
],
"uploads" : [
{
"part" : "1",
"target" : "/updates.img",
"source" : "updates.img"
}
]
},
{
"name" : "shrink",
"size" : "10G",
"labels" : ["mbr"],
"filesystems" : ["ext4", "ntfs"],
"parts" : [
{
"type" : "p",
"start" : "4096",
"end" : "-4097"
}
],
"writes" : [
{
"part" : "1",
"path" : "/testfile",
"content" : "Hello, world!"
}
]
}
],
"virtinstall" : [
{
"name" : "minimal",
"releases" : {
"-1" : ["x86_64", "ppc64le", "ppc64", "aarch64"],
"-2" : ["x86_64", "ppc64le", "ppc64", "aarch64"],
"stable": ["x86_64"],
"branched": ["x86_64"]
},
"size" : "18",
"imgver": "3"
},
{
"name" : "desktop",
"releases" : {
"stable" : ["x86_64", "i686"],
"branched": ["x86_64"]
},
"size" : "20",
"imgver": "4",
"variant": "Workstation"
},
{
"name" : "desktopencrypt",
"releases" : {
"stable" : ["x86_64"],
"branched" : ["x86_64"]
},
"size" : "20",
"variant": "Workstation"
},
{
"name" : "server",
"releases" : {
"stable" : ["x86_64", "ppc64le", "ppc64", "aarch64"],
"branched": ["x86_64", "ppc64le", "ppc64", "aarch64"]
},
"size" : "6",
"imgver": "3",
"variant": "Server"
},
{
"name" : "kde",
"releases" : {
"-1" : ["x86_64"],
"-2" : ["x86_64"]
},
"size" : "20",
"imgver": "3"
},
{
"name" : "support",
"releases" : {
"current" : ["x86_64", "ppc64le", "ppc64", "aarch64"]
},
"size" : "7",
"imgver" : "4"
}
],
"renames" : []
}