alpine-zdt-images/profiles/alpine.conf
tomalok 2bf6727f67
Release Alpine 3.13.0 (#108)
3.13.0 release
* add version 3.13 profile
* 3.13 end-of-life is 2022-11-01
* note we're an official Alpine project now!
* releases/alpine.yaml has been "--trim release"'d
* updated releases/README.md

scripts/builder.py
* fix ReleaseReadme() to not die when release contains "_rc"
* add --trim to releases-yaml
* tweak some --help for release-yaml and prune

scripts/setup-ami
* explicitly lock AMI root account
2021-01-14 23:53:40 -08:00

42 lines
1.4 KiB
Plaintext

### Profile for Building the Publically-Available Alpine Linux AMIs
# vim: ts=2 et:
version-3_13 { include required("version/3.13") }
version-3_12 { include required("version/3.12") }
version-3_11 { include required("version/3.11") }
version-3_10 { include required("version/3.10") }
version-edge { include required("version/edge") }
arch-x86_64 { include required("arch/x86_64") }
arch-aarch64 { include required("arch/aarch64") }
# profile vars
community {
ami_desc_suffix = " - https://github.com/mcrute/alpine-ec2-ami"
}
official {
ami_desc_suffix = " - https://alpinelinux.org/cloud"
}
fix_root_resize {
# https://github.com/mcrute/tiny-ec2-bootstrap/pull/16
pkgs {
sfdisk = true
util-linux = true
}
setup_script = scripts/tiny-ec2-backport.sh
}
# Build definitions
BUILDS {
# merge version, arch, profile; add per-build { revision = "r1" } if needed
edge-x86_64 = ${version-edge} ${arch-x86_64} ${official}
v3_13-x86_64 = ${version-3_13} ${arch-x86_64} ${official}
v3_12-x86_64 = ${version-3_12} ${arch-x86_64} ${community}
v3_11-x86_64 = ${version-3_11} ${arch-x86_64} ${community}
v3_10-x86_64 = ${version-3_10} ${arch-x86_64} ${community} { revision = "r1" }
edge-aarch64 = ${version-edge} ${arch-aarch64} ${official}
v3_13-aarch64 = ${version-3_13} ${arch-aarch64} ${official}
v3_12-aarch64 = ${version-3_12} ${arch-aarch64} ${community} ${fix_root_resize}
}