Skip to content

Commit

Permalink
fix issue where the base image name was not able to be set for indivi…
Browse files Browse the repository at this point in the history
…dual ee (#171)
  • Loading branch information
Tompage1994 authored Oct 28, 2024
1 parent c70eeb6 commit fb6dfb5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelogs/fragments/base_image_name.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- Fixed issue where the base image name was not able to be set for individual ee
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.images.base_image | default(__execution_environment_definition.base_image) | default(ee_base_image) }}"
name: "{{ __execution_environment_definition.images.base_image.name | default(__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 fb6dfb5

Please sign in to comment.