-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1287 from stackhpc/2024.1-2023.1-merge
2024.1: 2023.1 merge
- Loading branch information
Showing
19 changed files
with
280 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
- name: Check kolla-images.py image map and tag hierarchy | ||
hosts: localhost | ||
gather_facts: false | ||
tasks: | ||
- name: Create a temporary directory | ||
ansible.builtin.tempfile: | ||
state: directory | ||
suffix: kolla-ansible | ||
register: tempdir_result | ||
|
||
- name: Clone Kolla Ansible repository | ||
ansible.builtin.git: | ||
repo: "{{ stackhpc_kolla_ansible_source_url }}" | ||
version: "{{ stackhpc_kolla_ansible_source_version }}" | ||
dest: "{{ tempdir_result.path }}" | ||
|
||
- name: Check image mapping | ||
ansible.builtin.command: | ||
cmd: >- | ||
{{ kayobe_config_path }}/../../tools/kolla-images.py | ||
check-image-map | ||
--kolla-ansible-path {{ tempdir_result.path }} | ||
- name: Check tag hierarchy | ||
ansible.builtin.command: | ||
cmd: >- | ||
{{ kayobe_config_path }}/../../tools/kolla-images.py | ||
check-hierarchy | ||
--kolla-ansible-path {{ tempdir_result.path }} | ||
- name: Remove temporary directory | ||
ansible.builtin.file: | ||
path: "{{ tempdir_result.path }}" | ||
state: absent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...kayobe/environments/ci-multinode/hooks/overcloud-host-configure/pre.d/10-fix-hostname.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../../ansible/fix-hostname.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
controllers | ||
|
||
[fix-hostname:children] | ||
storage | ||
overcloud |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
releasenotes/notes/fix-cve-2024-44082-122ef225f674d864.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
security: | ||
- | | ||
Fixes `CVE-2024-44082 | ||
<https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-44082>`_ with updated | ||
container images for Ironic services. Note that Ironic Python Agent images | ||
also need to be updated to fully fix this vulnerability. If this is not | ||
possible, a new configuration option | ||
``[conductor]conductor_always_validates_images`` is available. See the | ||
`OSSA-2024-003 description | ||
<https://security.openstack.org/ossa/OSSA-2024-003.html>`_ for more | ||
details. |
5 changes: 5 additions & 0 deletions
5
releasenotes/notes/fixes-growroot-for-software-raid-3852bdea5415a0be.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes a regression when using ``growroot.yml`` and software raid where the | ||
playbook would fail to identify the correct disk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.