I guess a little more detail about what I'm trying to do would help. My
goal is to create a CoreOS image that will be able to act as a worker node
in an AWS EKS kubernetes cluster. I can create the configuration files
easy enough with ignition, but I need to have kubelet, heptio
authenticator, CNI plugins, and the AWS CLI already installed. I've been
following this
guide: https://medium.com/getamis/customize-aws-eks-worker-node-ami-d7b3d203051.
Post by Adam JenkinsPost by Adam JenkinsThanks David. Do you know how I might go about adding files to the
image?
You could either package them and add the package to
coreos-base/coreos, or edit the scripts to write them.
If your goal is just to add miscellaneous files, you might want to
also read about provisioning to determine if you really need to create
a custom image.
https://coreos.com/os/docs/latest/clc-examples.html#storage-and-files
Thanks.
David