From 578619c0c173664120ffa3b701065e03da3da144 Mon Sep 17 00:00:00 2001 From: c-bordon Date: Mon, 9 Jun 2025 12:07:36 -0300 Subject: [PATCH] Added exclude for cert tool image --- tools/repository_bumper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/repository_bumper.sh b/tools/repository_bumper.sh index be0b2c17..30bf828a 100644 --- a/tools/repository_bumper.sh +++ b/tools/repository_bumper.sh @@ -78,7 +78,7 @@ update_stage_in_files() { update_docker_images_tag() { local NEW_TAG="$1" - local DOCKERFILES=( $(grep_command -E "wazuh/wazuh-[a-zA-Z0-9._-]*" "${DIR}") ) + local DOCKERFILES=( $(grep_command -E "wazuh/wazuh-[a-zA-Z0-9._-]*" "${DIR}" --exclude="indexer-certs-creator/README.md" --exclude="generate-indexer-certs.yml") ) for file in "${DOCKERFILES[@]}"; do sed -i -E "s/(wazuh\/wazuh-[a-zA-Z0-9._-]*):[a-zA-Z0-9._-]+/\1:${NEW_TAG}/g" "${file}" if [[ $(git diff --name-only "${file}") ]]; then