-
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 branch 'cross-arch-builds-2024.1' of github.com:stackhpc/stackh…
…pc-kayobe-config into cross-arch-builds-2024.1
- Loading branch information
Showing
14 changed files
with
134 additions
and
28 deletions.
There are no files selected for viewing
Submodule .automation
updated
3 files
+2 −2 | docker/kayobe/Dockerfile | |
+4 −3 | scripts/config-diff.sh | |
+17 −0 | scripts/overcloud-database-recover.sh |
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,29 @@ | ||
#!/bin/bash | ||
|
||
set -euE | ||
set -o pipefail | ||
|
||
PARENT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
KAYOBE_AUTOMATION_DIR="$(realpath "${PARENT}/../../.automation")" | ||
|
||
function main { | ||
if [ "${PULP_DO_CONTAINER_SYNC:-}" = true ]; then | ||
${KAYOBE_AUTOMATION_DIR}/scripts/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/pulp-container-sync.yml' -e stackhpc_pulp_images_kolla_filter="${PULP_KOLLA_FILTER:-}" | ||
fi | ||
if [ "${PULP_DO_CONTAINER_PUBLISH:-}" = true ]; then | ||
${KAYOBE_AUTOMATION_DIR}/scripts/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/pulp-container-publish.yml' -e stackhpc_pulp_images_kolla_filter="${PULP_KOLLA_FILTER:-}" | ||
fi | ||
if [ "${PULP_DO_REPO_SYNC:-}" = true ]; then | ||
${KAYOBE_AUTOMATION_DIR}/scripts/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/pulp-repo-sync.yml' | ||
fi | ||
if [ "${PULP_DO_REPO_PUBLISH:-}" = true ]; then | ||
${KAYOBE_AUTOMATION_DIR}/scripts/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/pulp-repo-publish.yml' | ||
fi | ||
if [ "${PULP_DO_REPO_PROMOTE:-}" = true ]; then | ||
${KAYOBE_AUTOMATION_DIR}/scripts/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/pulp-repo-promote-production.yml' | ||
fi | ||
} | ||
|
||
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then | ||
main | ||
fi |
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
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
5 changes: 5 additions & 0 deletions
5
releasenotes/notes/fix-octavia-tls-terminated-pkcs12-4f7e32a6f5ca0143.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 creation and failover of Octavia TLS-terminated load balancers when | ||
storing the certificate and key as a PKCS12 bundle in Barbican. |
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,6 @@ | ||
--- | ||
security: | ||
- | | ||
Fixes `OSSA-2024-004 | ||
<https://security.openstack.org/ossa/OSSA-2024-004.html>`_ with updated | ||
container images for Ironic. |
23 changes: 23 additions & 0 deletions
23
releasenotes/notes/update-kayobe-automation-55fc9c5c380d819c.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,23 @@ | ||
--- | ||
features: | ||
- | | ||
Upgrades kayobe-automation submodule to ``7676aa8``. | ||
Upgrades kayobe-workflows collection to ``v1.1.0``. | ||
Kayobe-automation config-diff now runs in parallel and generates both | ||
the old and new configuration at the same time. This should improve | ||
config-diff wait times. | ||
Add support for the `pulp-sync-content` run book. | ||
deprecations: | ||
- | | ||
Kayobe-automation will now automatically detect vaulted files for the | ||
purpose of config-diff therefore, ``KAYOBE_CONFIG_SECRET_PATHS_EXTRA`` and | ||
``KAYOBE_CONFIG_VAULTED_FILES_PATHS_EXTRA`` are no longer used | ||
security: | ||
- | | ||
The upgraded kayobe-workflows collection increases the version of various | ||
Actions and containers used within GitHub based workflows, including increasing | ||
Docker in Docker to version ``27.3.1`` thus removing the vunerabilities present | ||
in ``24.0-git``. |