Skip to content

Commit

Permalink
Add ignition to simplified installer blueprint (#389)
Browse files Browse the repository at this point in the history
* create v2.3.1
  • Loading branch information
luisarizmendi authored Jun 26, 2024
1 parent 6e34162 commit d3031d5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ Infra.Osbuild Release Notes

.. contents:: Topics

v2.3.1
======

Minor Changes
-------------

- Include blueprint import file option
- Add ignition to simplified installer blueprint

v2.3.0
======

Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace: infra
name: osbuild

# The version of the collection. Must be compatible with semantic versioning
version: 2.3.0
version: 2.3.1

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
4 changes: 2 additions & 2 deletions roles/builder/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@
ansible.builtin.set_fact:
__simplified_insaller_customizations: {}

- name: Set __simplified_insaller_customizations value including only fdo and installation_device customizations
- name: Set __simplified_insaller_customizations value including only fdo, ignition and installation_device customizations
ansible.builtin.set_fact:
__simplified_insaller_customizations: "{{ __simplified_insaller_customizations | combine({item.key: item.value}) }}"
when: "item.key in ['fdo', 'installation_device']"
when: "item.key in ['fdo', 'installation_device', 'ignition']"
with_dict: "{{ builder_compose_customizations }}"

- name: Create simplified installer blueprint
Expand Down

0 comments on commit d3031d5

Please sign in to comment.