Skip to content

Commit

Permalink
updating the pull image on build ee (#157)
Browse files Browse the repository at this point in the history
* modified:   roles/ee_builder/tasks/00_build_ee.yml

* new file:   changelogs/fragments/147-pull-image.yml
  • Loading branch information
djdanielsson authored Jun 18, 2024
1 parent 53cc8ee commit 4db243f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelogs/fragments/147-pull-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
bugfixes:
- Fixed an issue where depending on your ee base image variable location, it might not pull the correct image.
...
2 changes: 1 addition & 1 deletion roles/ee_builder/tasks/00_build_ee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

- name: Pull builder images
containers.podman.podman_image:
name: "{{ __execution_environment_definition.base_image | default(ee_base_image) }}"
name: "{{ __execution_environment_definition.images.base_image | default(__execution_environment_definition.base_image) | default(ee_base_image) }}"
username: "{{ ee_base_registry_username | default(omit, true) }}"
password: "{{ ee_base_registry_password | default(omit, true) }}"
validate_certs: "{{ ee_validate_certs | default(omit) }}"
Expand Down

0 comments on commit 4db243f

Please sign in to comment.