Skip to content

Commit 9e55dbf

Browse files
Merge pull request #49 from gardenlinux/feat/certs
add cert media types
2 parents d927d4d + a38769e commit 9e55dbf

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/parse_features.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,19 @@
88

99
# It is important that this list is sorted in descending length of the entries
1010
GL_MEDIA_TYPES = [
11+
"secureboot.aws-efivars",
12+
"secureboot.kek.auth",
1113
"gcpimage.tar.gz.log",
14+
"secureboot.pk.auth",
15+
"secureboot.kek.crt",
16+
"secureboot.kek.der",
17+
"secureboot.db.auth",
1218
"firecracker.tar.gz",
19+
"secureboot.pk.crt",
20+
"secureboot.pk.der",
21+
"secureboot.db.crt",
22+
"secureboot.db.der",
23+
"secureboot.db.arn",
1324
"platform.test.log",
1425
"platform.test.xml",
1526
"gcpimage.tar.gz",
@@ -84,6 +95,17 @@
8495
"chroot.test.log": "application/io.gardenlinux.io.chroot.test.log",
8596
"chroot.test.xml": "application/io.gardenlinux.io.chroot.test.xml",
8697
"oci.log": "application/io.gardenlinux.log",
98+
"secureboot.pk.crt": "application/io.gardenlinux.cert.secureboot.pk.crt",
99+
"secureboot.pk.der": "application/io.gardenlinux.cert.secureboot.pk.der",
100+
"secureboot.pk.auth": "application/io.gardenlinux.cert.secureboot.pk.auth",
101+
"secureboot.kek.crt": "application/io.gardenlinux.cert.secureboot.kek.crt",
102+
"secureboot.kek.der": "application/io.gardenlinux.cert.secureboot.kek.der",
103+
"secureboot.kek.auth": "application/io.gardenlinux.cert.secureboot.kek.auth",
104+
"secureboot.db.crt": "application/io.gardenlinux.cert.secureboot.db.crt",
105+
"secureboot.db.der": "application/io.gardenlinux.cert.secureboot.db.der",
106+
"secureboot.db.auth": "application/io.gardenlinux.cert.secureboot.db.auth",
107+
"secureboot.db.arn": "application/io.gardenlinux.cert.secureboot.db.arn",
108+
"secureboot.aws-efivars": "application/io.gardenlinux.cert.secureboot.aws-efivars",
87109
}
88110

89111

0 commit comments

Comments
 (0)