forked from openstack/kolla-ansible
-
Notifications
You must be signed in to change notification settings - Fork 5
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 #657 from stackhpc/upstream/2024.1-2025-01-03
Synchronise 2024.1 with upstream
- Loading branch information
Showing
10 changed files
with
56 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# {{ ansible_managed }} | ||
|
||
# Clear any old environment that may conflict. | ||
for key in $( set | awk '{FS="="} /^OS_/ {print $1}' ); do unset $key ; done | ||
export OS_USER_DOMAIN_NAME=Default | ||
export OS_SYSTEM_SCOPE=all | ||
export OS_USERNAME={{ keystone_admin_user }} | ||
export OS_PASSWORD={{ keystone_admin_password }} | ||
export OS_AUTH_URL={{ keystone_public_url }} | ||
export OS_IDENTITY_API_VERSION=3 | ||
export OS_REGION_NAME={{ openstack_region_name }} | ||
export OS_AUTH_PLUGIN=password | ||
{% if kolla_admin_openrc_cacert is not none and kolla_admin_openrc_cacert | length > 0 %} | ||
export OS_CACERT={{ kolla_admin_openrc_cacert }} | ||
{% endif %} |
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,8 @@ | ||
--- | ||
# TODO(kevko) Remove in E cycle | ||
- name: Remove old nova_libvirt_secrets container volume | ||
become: true | ||
kolla_container: | ||
container_engine: "{{ kolla_container_engine }}" | ||
action: "remove_volume" | ||
name: nova_libvirt_secrets |
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 |
---|---|---|
|
@@ -14,3 +14,5 @@ | |
|
||
- name: Flush handlers | ||
meta: flush_handlers | ||
|
||
- import_tasks: post-config.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,7 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixes cases when fluentd parser fails on Python traceback. | ||
OpenStack services regex has been reworked to include both | ||
global_request_id and handling cases with Python traceback. | ||
`LP#2044370 <https://launchpad.net/bugs/2044370>`_ |
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 busy libvirt's secret volume while secrets are changing. | ||
`LP#2073678 <https://launchpad.net/bugs/2073678>`__ |
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/public-openrc-system-e52c9f5440b6f594.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,7 @@ | ||
--- | ||
features: | ||
- | | ||
Generates a system-scoped ``public-openrc-system.sh`` file. This allows | ||
running Ironic commands against the public API, which is useful when access | ||
to the internal API is unavailable. | ||
`LP#2051837 <https://launchpad.net/bugs/2051837>`__ |