mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-10 20:32:54 +00:00
versions: Use Ubuntu initrd for non-musl archs
ppc64le & s390x have no (well supported) musl target for Rust, therefore, the agent must use glibc and cannot use Alpine. Specify Ubuntu as the distribution to be used for initrd. Fixes: #3212 Signed-off-by: Jakob Naucke <jakob.naucke@ibm.com>
This commit is contained in:
parent
89f9672f56
commit
7c15335dc9
@ -140,12 +140,14 @@ assets:
|
||||
aarch64:
|
||||
name: &default-initrd-name "alpine"
|
||||
version: &default-initrd-version "3.13.5"
|
||||
# Do not use Alpine on ppc64le & s390x, the agent cannot use musl because
|
||||
# there is no such Rust target
|
||||
ppc64le:
|
||||
name: *default-initrd-name
|
||||
version: *default-initrd-version
|
||||
name: &glibc-initrd-name "ubuntu"
|
||||
version: &glibc-initrd-version "20.04"
|
||||
s390x:
|
||||
name: *default-initrd-name
|
||||
version: *default-initrd-version
|
||||
name: *glibc-initrd-name
|
||||
version: *glibc-initrd-version
|
||||
x86_64:
|
||||
name: *default-initrd-name
|
||||
version: *default-initrd-version
|
||||
|
Loading…
Reference in New Issue
Block a user