aboutsummaryrefslogtreecommitdiff
path: root/profiles/base/2
blob: ae58f06184beeefeebd0a2ebdfbf9e988a132f12 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
### base vars, revision 1
# vim: ts=2 et:

# Profile/Build
profile       = null
profile_build = null
revision      = "r0"

# Versioning
version     = null
release     = null
end_of_life = null

# Architecture
arch        = null
build_arch  = null

# Builder-instance
build_region          = "us-west-2"
build_subnet          = null
build_instance_type   = "t3.nano"
build_public_ip       = null
build_user            = "ec2-user"
build_ami_name        = "amzn2-ami-hvm-2.0.*-gp2"
build_ami_owner       = "137112412989"
build_ami_latest      = "true"

# AMI build/deploy
aws_profile     = null  # AWS profile to build AMI
aws_accounts    = null  # comma-separated AWS accounts allowed to launch AMI
ami_name_prefix = "alpine-ami-"
ami_name_suffix = ""
ami_desc_prefix = "Alpine Linux "
ami_desc_suffix = ""
ami_volume_size = "1"
ami_encrypt     = "false"
ami_user        = "alpine"  # modification currently not supported

# NOTE: the following are python format strings, resolved in resolve-profile.py
ami_name        = "{var.ami_name_prefix}{var.release}-{var.arch}-{var.revision}{var.ami_name_suffix}"
ami_desc        = "{var.ami_desc_prefix}{var.release} {var.arch} {var.revision}{var.ami_desc_suffix}"

# AMI configuration
apk_tools           = null
apk_tools_sha256    = null
alpine_keys         = null
alpine_keys_sha256  = null
repos {}
pkgs {
  linux-virt          = true
  chrony              = true
  nvme-cli            = true
  openssh             = true
  sudo                = true
  tiny-ec2-bootstrap  = true
  tzdata              = true
}
svcs {
  sysinit {
    devfs               = true
    dmesg               = true
    hwdrivers           = true
    mdev                = true
  }
  boot {
    acpid               = true
    bootmisc            = true
    hostname            = true
    hwclock             = true
    modules             = true
    swap                = true
    sysctl              = true
    syslog              = true
  }
  default {
    chronyd             = true
    networking          = true
    sshd                = true
    tiny-ec2-bootstrap  = true
  }
  shutdown {
    killprocs           = true
    mount-ro            = true
    savecache           = true
  }
}
kernel_modules {
  sd-mod      = true
  usb-storage = true
  ext4        = true
  nvme        = true
  ena         = true
}
kernel_options {
  "console=ttyS0,115200n8"          = true
  "nvme_core.io_timeout=4294967295" = true
}
# NOTE: nvme and ena are critical for i3, a1, m6g, and anything in the 5 series
# forward. Without them these instances will not boot.
initfs_features {
  nvme        = true
  ena         = true
}