Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ignition to simplified installer blueprint #389

Merged
merged 3 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -99,7 +99,7 @@
when: builder_blueprint_import_file is not defined

- block:
- name: Copy the blueprint file

Check failure on line 102 in roles/builder/tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint Blue

102:11 [indentation] wrong indentation: expected 12 but found 10

Check failure on line 102 in roles/builder/tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint Green

102:11 [indentation] wrong indentation: expected 12 but found 10

Check failure on line 102 in roles/builder/tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint Blue

102:11 [indentation] wrong indentation: expected 12 but found 10

Check failure on line 102 in roles/builder/tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint Green

102:11 [indentation] wrong indentation: expected 12 but found 10
copy:
src: "{{ builder_blueprint_import_file }}"
dest: "{{ builder_blueprint_src_path }}"
Expand Down 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
Loading