-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add examples and documentation for CentOS Stream
Explain "what happened" with centos.yaml vs centos-stream.yaml Make experimental example for stream9, next to current stream8. quay.io/centos/centos:stream8 quay.io/centos/centos:stream9 Signed-off-by: Anders F Björklund <[email protected]>
- Loading branch information
1 parent
de546da
commit a1f172a
Showing
3 changed files
with
42 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This example requires Lima v0.8.3 or later. | ||
|
||
images: | ||
- location: "https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-GenericCloud-8-20220125.1.x86_64.qcow2" | ||
arch: "x86_64" | ||
digest: "sha256:a25560ab39e10594ee7a4a1dadcba7bf303b7c3c41559b4a7fc3c522540a6672" | ||
- location: "https://cloud.centos.org/centos/8-stream/aarch64/images/CentOS-Stream-GenericCloud-8-20220125.1.aarch64.qcow2" | ||
arch: "aarch64" | ||
digest: "sha256:d973991085db0ca8373e1d9948440213cdc76b6acf8f17aa2aed2163c1347cbc" | ||
mounts: | ||
- location: "~" | ||
- location: "/tmp/lima" | ||
writable: true | ||
firmware: | ||
legacyBIOS: true | ||
cpuType: | ||
# Workaround for "vmx_write_mem: mmu_gva_to_gpa XXXXXXXXXXXXXXXX failed" on Intel Mac | ||
# https://bugs.launchpad.net/qemu/+bug/1838390 | ||
x86_64: "Haswell-v4" |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This example requires Lima v0.8.3 or later. | ||
|
||
images: | ||
- location: "https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-20220606.0.x86_64.qcow2" | ||
arch: "x86_64" | ||
digest: "sha256:41c8cce7b5ed9ba70f7f103f058bd6320e3462f2dc2c97db84ad7f1c6918a525" | ||
- location: "https://cloud.centos.org/centos/9-stream/aarch64/images/CentOS-Stream-GenericCloud-9-20220606.0.aarch64.qcow2" | ||
arch: "aarch64" | ||
digest: "sha256:55ef64861d7f9cf5d1407af708fba8ad6015b54bfda81913cc942785091912b0" | ||
mounts: | ||
- location: "~" | ||
- location: "/tmp/lima" | ||
writable: true | ||
firmware: | ||
legacyBIOS: true | ||
cpuType: | ||
# Workaround for "vmx_write_mem: mmu_gva_to_gpa XXXXXXXXXXXXXXXX failed" on Intel Mac | ||
# https://bugs.launchpad.net/qemu/+bug/1838390 | ||
x86_64: "Haswell-v4" |