Skip to content

Commit b9c44c1

Browse files
authored
Merge pull request #1363 from wazuh/chg/3062-Update_Pre-release_and_Prod_artifact_URLs
Update artifact URLs file extension from .yml to .yaml
2 parents e94558a + fb96955 commit b9c44c1

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/actions/setup_artifacts/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ inputs:
1212
artifact-urls-file-temp:
1313
description: 'Temporary file path for artifact URLs'
1414
required: true
15-
default: '/tmp/artifact_urls.yml'
15+
default: '/tmp/artifact_urls.yaml'
1616
wazuh-version:
1717
description: 'Wazuh version'
1818
required: true
@@ -39,7 +39,7 @@ runs:
3939
mkdir -p "$(dirname "${{ inputs.artifact-urls-file-temp }}")"
4040
4141
# Download the file from S3
42-
S3_KEY="deployment/artifact_urls.yml"
42+
S3_KEY="deployment/artifact_urls.yaml"
4343
aws s3 cp "s3://${{ inputs.s3-bucket-artifacts }}/$S3_KEY" "${{ inputs.artifact-urls-file-temp }}" --region ${{ inputs.aws-region }}
4444
4545
# Delete newline characters
@@ -59,7 +59,7 @@ runs:
5959
DEV_S3_BUCKET: ${{ inputs.dev_s3_bucket }}
6060
ENV_FILE_OUTPUT: ${{ inputs.env_file_output }}
6161
run: |
62-
OUTPUT_FILE="/tmp/wazuh-docker/artifact_urls_processed.yml"
62+
OUTPUT_FILE="/tmp/wazuh-docker/artifact_urls_processed.yaml"
6363
6464
mkdir -p "$(dirname "$OUTPUT_FILE")"
6565
@@ -93,9 +93,9 @@ runs:
9393
9494
# Verify the output file
9595
if [ -f "$OUTPUT_FILE" ]; then
96-
echo "The downloaded file artifact_urls.yml was successfully processed at $OUTPUT_FILE."
96+
echo "The downloaded file artifact_urls.yaml was successfully processed at $OUTPUT_FILE."
9797
else
98-
echo "Failed to create processed artifact_urls.yml file." >&2
98+
echo "Failed to create processed artifact_urls.yaml file." >&2
9999
exit 1
100100
fi
101101

.github/workflows/eks-deployment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
CLUSTER_NAME: test-eks-deploy${{ github.event.number }}
1818
ECR_REGISTRY: "${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com"
1919
WAZUH_REVISION: latest
20-
ARTIFACT_URLS_FILE_TEMP: "/tmp/wazuh-docker/artifact_urls.yml"
20+
ARTIFACT_URLS_FILE_TEMP: "/tmp/wazuh-docker/artifact_urls.yaml"
2121
ARTIFACT_URLS_ENV_FILE: "/tmp/wazuh-docker/artifact_urls.sh"
2222
ASSISTANT_REVISION: latest
2323

.github/workflows/local-deployment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
env:
1818
ECR_REGISTRY: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
1919
WAZUH_REVISION: latest
20-
ARTIFACT_URLS_FILE_TEMP: "/tmp/wazuh-docker/artifact_urls.yml"
20+
ARTIFACT_URLS_FILE_TEMP: "/tmp/wazuh-docker/artifact_urls.yaml"
2121
ARTIFACT_URLS_ENV_FILE: "/tmp/wazuh-docker/artifact_urls.sh"
2222
ASSISTANT_REVISION: latest
2323

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
1515

1616
### Changed
1717

18+
- Update artifact URLs file extension from .yml to .yaml ([#1363](https://github.com/wazuh/wazuh-kubernetes/pull/1363))
1819
- Updated wazuh-kubernetes documentation config and tooling versions to meet new standards. ([#1358](https://github.com/wazuh/wazuh-kubernetes/pull/1358))
1920
- Change config.yml configuration on test and deployment doc ([#1355](https://github.com/wazuh/wazuh-kubernetes/pull/1355))
2021
- Change paths and binary names of Wazuh manager. ([#1339](https://github.com/wazuh/wazuh-kubernetes/pull/1339))

0 commit comments

Comments
 (0)