diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f62394c4..056dae5d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ====== diff --git a/galaxy.yml b/galaxy.yml index 63aece04..b077f223 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -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 diff --git a/roles/builder/tasks/main.yml b/roles/builder/tasks/main.yml index b33c8f26..db2c4d01 100644 --- a/roles/builder/tasks/main.yml +++ b/roles/builder/tasks/main.yml @@ -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