-
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 'stackhpc/2024.1' into 2024.1-cleanup-multinodes
- Loading branch information
Showing
205 changed files
with
7,451 additions
and
3,393 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
skip_list: | ||
- no-changed-when | ||
- risky-file-permissions | ||
- run-once | ||
- name[template] | ||
- package-latest | ||
- yaml | ||
- role-name[path] | ||
- yaml[line-length] |
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 @@ | ||
# This file contains ignores to rule violations for ansible-lint | ||
etc/kayobe/ansible/vault-deploy-barbican.yml fqcn[action-core] | ||
etc/kayobe/ansible/vault-generate-backend-tls.yml fqcn[action-core] | ||
etc/kayobe/ansible/vault-generate-internal-tls.yml fqcn[action-core] | ||
etc/kayobe/ansible/vault-generate-test-external-tls.yml fqcn[action-core] | ||
etc/kayobe/ansible/rabbitmq-reset.yml command-instead-of-module | ||
etc/kayobe/ansible/ubuntu-upgrade.yml syntax-check[missing-file] |
Submodule .automation
updated
3 files
+4 −3 | 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
path: | ||
pullrequest: true | ||
multipleLabelPaths: | ||
- paths: | ||
.automation: 'kayobe-automation' | ||
.automation.conf: 'kayobe-automation' | ||
- paths: | ||
doc: 'documentation' | ||
- paths: | ||
.github: 'workflows' | ||
etc: | ||
kayobe: | ||
enviromnents: | ||
ci-aio: 'workflows' | ||
ci-builder: 'workflows' | ||
ci-multinode: 'workflows' | ||
trivy: 'workflows' | ||
terraform: 'workflows' | ||
tools: | ||
scan-images.sh: "workflows" | ||
tox.ini: 'workflows' | ||
- paths: | ||
etc: | ||
kayobe: | ||
ansible: 'ansible' | ||
ansible.cfg: 'ansible' | ||
- paths: | ||
etc: | ||
kayobe: | ||
kolla: | ||
config: | ||
fluentd: "monitoring" | ||
grafana: "monitoring" | ||
prometheus: "monitoring" | ||
inventory: | ||
group_vars: | ||
prometheus-blackbox-exporter: "monitoring" | ||
- paths: | ||
etc: | ||
kayobe: | ||
kolla: | ||
kolla-build.conf: "kolla" | ||
kolla-image-tags.yml: "kolla" | ||
kolla.yml: "kolla" | ||
tools: | ||
kolla-images.py: "kolla" | ||
|
||
staleness: | ||
pullrequest: true | ||
old: 30 | ||
extraold: 90 | ||
|
||
requestsize: | ||
enabled: true |
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,3 @@ | ||
--- | ||
enabled: true | ||
preservePullRequestTitle: true |
Oops, something went wrong.