Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wazuh Puppet module builder #1107

Merged
merged 2 commits into from
Sep 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 75 additions & 0 deletions .github/workflows/Puppet_module_builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
run-name: Build Wazuh Puppet module ${{ inputs.BRANCH_NAME }}
name: Puppet Module Builder

on:
workflow_dispatch:
inputs:
BRANCH_NAME:
type: string
description: "Branch or tag name"
required: true
default: "v4.10.0"
UPLOAD_S3:
type: boolean
description: "Upload Puppet module to S3"
required: true
default: false
S3_REPOSITORY:
type: choice
description: "S3 Repository"
required: true
options:
- staging
- pre-release

permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout

jobs:
build_module:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ inputs.BRANCH_NAME }}

- name: Verify Tag name
run: |
WAZUH_TAG=$(curl --silent https://api.github.com/repos/wazuh/wazuh/git/refs/tags | grep '["]ref["]:' | sed -E 's/.*\"([^\"]+)\".*/\1/' | cut -c 11- | grep ^${{ inputs.BRANCH_NAME }}$)
echo "WAZUH_TAG=$WAZUH_TAG" >> "$GITHUB_ENV"

- name: Install dependencies
run: |
curl -O https://apt.puppet.com/puppet-tools-release-noble.deb && \
dpkg -i puppet-tools-release-noble.deb && \
apt-get update && \
apt-get install pdk
pdk set config user.analytics.disabled false --type boolean --force

- name: Build Wazuh Puppet module
run: |
mkdir -p ${{ github.workspace }}/output
pdk build --force --target-dir=${{ github.workspace }}/output/

- name: Create Puppet module artifact
uses: actions/upload-artifact@v4
with:
name: Puppet module artifact
path: ${{ github.workspace }}/output/wazuh-wazuh-.tar.gz
retention-days: 1

- name: Configure aws credentials
if: ${{ env.WAZUH_TAG != '' && inputs.UPLOAD_S3 == true }}
uses: aws-actions/configure-aws-credentials@v3
with:
role-to-assume: ${{ secrets.AWS_IAM_PUPPET_ROLE }}
role-session-name: "Puppet module-Builder"
aws-region: "${{ secrets.AWS_REGION }}"
role-duration-seconds: 10800

- name: Upload Puppet module to S3
if: ${{ env.WAZUH_TAG != '' && inputs.UPLOAD_S3 == true }}
run: aws s3 cp ${{ github.workspace }}/output/*.tar.gz s3://${{ secrets.AWS_S3_BUCKET }}/${{ inputs.S3_REPOSITORY }}/puppet-module/

Loading