forked from bottlerocket-os/bottlerocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "aws-ecs-3-nvidia"
version = "0.1.0"
edition = "2021"
publish = false
build = "../build.rs"
[package.metadata.build-variant.image-features]
grub-set-private-var = true
uefi-secure-boot = true
xfs-data-partition = true
systemd-networkd = true
erofs-root-partition = true
external-kmod-development = false
encrypted-storage = true
[package.metadata.build-variant.image-layout]
os-image-size-gib = 4
[package.metadata.build-variant]
included-packages = [
# core
"release",
"kernel-6.12",
"containerd-2.1",
"systemd-257",
"nftables",
"whippet",
# docker
"docker-cli-29",
"docker-engine-29",
"docker-init",
# ecs
"ecs-agent-nvidia-config",
"aws-signer-notation-plugin",
"notation-image-verifier",
# NVIDIA support
"ecs-gpu-init",
"nvidia-container-toolkit-ecs",
"kmod-6.12-nvidia-r580-tesla",
]
kernel-parameters = [
"console=tty0",
"console=ttyS0,115200n8",
"net.ifnames=0",
"netdog.default-interface=eth0:dhcp4,dhcp6?",
"quiet",
]
[lib]
path = "../variants.rs"
[build-dependencies]
settings-defaults = { path = "../../packages/settings-defaults" }
settings-plugins = { path = "../../packages/settings-plugins" }
settings-migrations = { path = "../../packages/settings-migrations" }