Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Packer | 14,701 | 8 | 62 | a day ago | 360 | August 18, 2023 | 401 | other | Go | |
Packer is a tool for creating identical machine images for multiple platforms from a single source configuration. | ||||||||||
Amazon Eks Ami | 2,251 | 11 hours ago | 79 | mit-0 | Shell | |||||
Packer configuration for building a custom EKS AMI | ||||||||||
Evolution Strategies Starter | 1,253 | 4 years ago | 14 | mit | Python | |||||
Code for the paper "Evolution Strategies as a Scalable Alternative to Reinforcement Learning" | ||||||||||
Malboxes | 930 | 2 years ago | 26 | gpl-3.0 | Python | |||||
Builds malware analysis Windows VMs so that you don't have to. | ||||||||||
Terraform Aws Consul | 404 | 10 months ago | 57 | August 16, 2021 | 69 | apache-2.0 | HCL | |||
A Terraform Module for how to run Consul on AWS using Terraform and Packer | ||||||||||
Ami Builder Packer | 376 | 5 years ago | apache-2.0 | |||||||
An example of an AMI Builder using CI/CD with AWS CodePipeline, AWS CodeBuild, Hashicorp Packer and Ansible. | ||||||||||
Infrastructure As Code Training | 347 | a month ago | 6 | apache-2.0 | Ruby | |||||
Materials for learning how to use infrastructure-as-code | ||||||||||
Packer Build | 288 | 20 days ago | gpl-3.0 | HCL | ||||||
Packer Automated VM Image and Vagrant Box Builds | ||||||||||
Graylog2 Images | 236 | a year ago | 10 | apache-2.0 | Shell | |||||
Ready to run machine images | ||||||||||
Rails_ruby_bench | 193 | 3 years ago | 4 | gpl-2.0 | Ruby | |||||
A Rails-based benchmark for Ruby development |
This repository contains resources and configuration scripts for building a custom Amazon EKS AMI with HashiCorp Packer. This is the same configuration that Amazon EKS uses to create the official Amazon EKS-optimized AMI.
If you are new to Amazon EKS, we recommend that you follow our Getting Started chapter in the Amazon EKS User Guide. If you already have a cluster, and you want to launch a node group with your new AMI, see Launching Amazon EKS Worker Nodes.
You must have Packer version 1.8.0 or later installed on your local system. For more information, see Installing Packer in the Packer documentation. You must also have AWS account credentials configured so that Packer can make calls to AWS API operations on your behalf. For more information, see Authentication in the Packer documentation.
A Makefile is provided to build the Amazon EKS Worker AMI, but it is just a small wrapper around invoking Packer directly. You can initiate the build process by running the following command in the root of this repository:
# build an AMI with the latest Kubernetes version
make
# build an AMI with a specific Kubernetes version
make 1.25
The Makefile chooses a particular kubelet binary to use per Kubernetes version which you can view here.
Note The default instance type to build this AMI does not qualify for the AWS free tier. You are charged for any instances created when building this AMI.
The AMI user guide has details about the AMI's internals, and the EKS user guide explains how to use a custom AMI in a managed node group.
For security issues or concerns, please do not open an issue or pull request on GitHub. Please report any suspected or confirmed security issues to AWS Security https://aws.amazon.com/security/vulnerability-reporting/
This sample code is made available under a modified MIT license. See the LICENSE file.