Skip to content

Instantly share code, notes, and snippets.

@grahamc
Created November 16, 2019 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grahamc/b9bd8da3594ceb1d5399f9e7bd92a72e to your computer and use it in GitHub Desktop.
Save grahamc/b9bd8da3594ceb1d5399f9e7bd92a72e to your computer and use it in GitHub Desktop.
to-build =
| platform plan reboot-rate |
"x86_64-linux" "m1.xlarge.x86" 5,
"x86_64-linux" "m2.xlarge.x86" 2,
"x86_64-linux" "c2.medium.x86" 2,
"aarch64-linux" "c1.large.arm" 2,
"aarch64-linux" "c2.large.arm" 2,
;
to_build = [
{ platform = "x86_64-linux"; plan = "m1.xlarge.x86"; reboot-rate = "5"; }
{ platform = "x86_64-linux"; plan = "m2.xlarge.x86"; reboot-rate = "2"; }
{ platform = "x86_64-linux"; plan = "c2.medium.x86"; reboot-rate = "2"; }
{ platform = "aarch64-linux"; plan = "c1.large.arm"; reboot-rate = "2"; }
{ platform = "aarch64-linux"; plan = "c2.large.arm"; reboot-rate = "2"; }
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment