4.3. Customizing an existing execution environment image
Ansible Controller ships with three default execution environments:
-
Ansible 2.9- no collections are installed other than Controller modules -
Minimal- contains the latest Ansible 2.11 release along with Ansible Runner, but contains no collections or other additional content -
EE Supported- contains all Red Hat-supported content
While these environments cover many automation use cases, you can add additional items to customize these containers for your specific needs. The following procedure adds the kubernetes.core collection to the ee-minimal default image:
Procedure
Log in to
quay.iovia Podman:podman login -u="[username]" -p="[token/hash]" quay.io
$ podman login -u="[username]" -p="[token/hash]" quay.ioCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that you have access to pull the base image that you want to use.
-
For example, to pull a
ee-minimalimage, check that you have access to this repository.
-
For example, to pull a
Configure your Ansible Builder files to specify any additional content to add to the new execution environment image which is based off of
ee-minimal.For example, to add the Kubernetes Core Collection from Galaxy to the image, fill out the
requirements.ymlfile as such:--- collections: - kubernetes.core
--- collections: - kubernetes.coreCopy to Clipboard Copied! Toggle word wrap Toggle overflow - For more information on definition files and their content, refer to to definition file breakdown section.
In the execution environment definition file, specify the filepath to the original
ee-minimalcontainer via theEE_BASE_IMAGEfield. In doing so, your finalexecution-environment.ymlfile will look like the following:例 4.2. A customized
execution-environment.ymlfileCopy to Clipboard Copied! Toggle word wrap Toggle overflow 注意Since this example uses the community version of
kubernetes.coreand not a certified collection from automation hub, we do not need to create anansible.cfgnor reference that in our definition file.Build the new execution environment image using the following command:
ansible-builder build -t quay.io/[username]/new-ee
$ ansible-builder build -t quay.io/[username]/new-eeCopy to Clipboard Copied! Toggle word wrap Toggle overflow where
[username]specifies your username, andnew-eespecifies the name of your new container image.Use the
podman imagescommand to confirm that your new container image is indeed in that list:例 4.3. Output of a
podman imagescommand with the imagenew-eeREPOSITORY TAG IMAGE ID CREATED SIZE localhost/new-ee latest f5509587efbb 3 minutes ago 769 MB
REPOSITORY TAG IMAGE ID CREATED SIZE localhost/new-ee latest f5509587efbb 3 minutes ago 769 MBCopy to Clipboard Copied! Toggle word wrap Toggle overflow
- Verify your newly-created execution environment image via Ansible Navigator
Push your image to the container registry automation hub:
podman push quay.io/[username]/new-ee
$ podman push quay.io/[username]/new-eeCopy to Clipboard Copied! Toggle word wrap Toggle overflow Pull your new image in your automation controller instance:
- Navigate to automation controller
- From the side-navigational bar, click Administration > Execution Environments.
- Click Add.
Enter the appropriate information then hit Save to pull in the new image.
注意if your instance of automation hub is password or token protected, ensure that you have the appropriate container registry credential set up.