-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from wazuh/4.10.0
Merge 4.10.0 branch into main
- Loading branch information
Showing
59 changed files
with
11,908 additions
and
1 deletion.
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,62 @@ | ||
run-name: Test installation assistant - System ${{ inputs.SYSTEM }} - Launched by @${{ github.actor }} | ||
name: Test installation assistant | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cert_tool/**' | ||
- 'common_functions/**' | ||
- 'config/**' | ||
- 'install_functions/**' | ||
- 'passwords_tool/**' | ||
- 'tests/**' | ||
workflow_dispatch: | ||
inputs: | ||
REPOSITORY: | ||
description: 'Repository environment' | ||
required: true | ||
default: 'pre-release' | ||
type: choice | ||
options: | ||
- staging | ||
- pre-release | ||
AUTOMATION_REFERENCE: | ||
description: 'wazuh-automation reference' | ||
required: true | ||
default: 'v4.10.0' | ||
SYSTEM: | ||
description: 'Operating System' | ||
required: true | ||
default: 'CentOS 8' | ||
type: choice | ||
options: | ||
- CentOS 7 | ||
- CentOS 8 | ||
- Amazon Linux 2 | ||
- Ubuntu 16 | ||
- Ubuntu 18 | ||
- Ubuntu 20 | ||
- Ubuntu 22 | ||
- RHEL7 | ||
- RHEL8 | ||
DEBUG: | ||
description: 'Debug mode' | ||
required: true | ||
default: false | ||
type: boolean | ||
DESTROY: | ||
description: 'Destroy instances after run' | ||
required: true | ||
default: true | ||
type: boolean | ||
|
||
env: | ||
LABEL: ubuntu-latest | ||
|
||
jobs: | ||
initialize-environment: | ||
runs-on: $LABEL | ||
|
||
steps: | ||
- name: Set up Git | ||
uses: actions/checkout@v3 |
47 changes: 47 additions & 0 deletions
47
.github/workflows/Test_installation_assistant_distributed.yml
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,47 @@ | ||
run-name: (Distributed) Test installation assistant - Launched by @${{ github.actor }} | ||
name: (Distributed) Test installation assistant | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'cert_tool/**' | ||
- 'common_functions/**' | ||
- 'config/**' | ||
- 'install_functions/**' | ||
- 'passwords_tool/**' | ||
- 'tests/**' | ||
workflow_dispatch: | ||
inputs: | ||
REPOSITORY: | ||
description: 'Repository environment' | ||
required: true | ||
default: 'pre-release' | ||
type: choice | ||
options: | ||
- staging | ||
- pre-release | ||
AUTOMATION_REFERENCE: | ||
description: 'wazuh-automation reference' | ||
required: true | ||
default: 'v4.10.0' | ||
DEBUG: | ||
description: 'Debug mode' | ||
required: true | ||
default: false | ||
type: boolean | ||
DESTROY: | ||
description: 'Destroy instances after run' | ||
required: true | ||
default: true | ||
type: boolean | ||
|
||
env: | ||
LABEL: ubuntu-latest | ||
|
||
jobs: | ||
initialize-environment: | ||
runs-on: $LABEL | ||
|
||
steps: | ||
- name: Set up Git | ||
uses: actions/checkout@v3 |
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,84 @@ | ||
run-name: (Tier) Test installation assistant - Launched by @${{ github.actor }} | ||
name: (Tier) Test installation assistant | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
REPOSITORY: | ||
description: 'Repository environment' | ||
required: true | ||
default: 'pre-release' | ||
type: choice | ||
options: | ||
- staging | ||
- pre-release | ||
AUTOMATION_REFERENCE: | ||
description: 'wazuh-automation reference' | ||
required: true | ||
default: 'v4.10.0' | ||
CentOS_7: | ||
description: 'CentOS 7' | ||
required: true | ||
default: false | ||
type: boolean | ||
CentOS_8: | ||
description: 'CentOS 8' | ||
required: true | ||
default: true | ||
type: boolean | ||
Amazon_Linux_2: | ||
description: 'Amazon Linux 2' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_16: | ||
description: 'Ubuntu 16' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_18: | ||
description: 'Ubuntu 18' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_20: | ||
description: 'Ubuntu 20' | ||
required: true | ||
default: false | ||
type: boolean | ||
Ubuntu_22: | ||
description: 'Ubuntu 22' | ||
required: true | ||
default: false | ||
type: boolean | ||
RHEL_7: | ||
description: 'RHEL 7' | ||
required: true | ||
default: false | ||
type: boolean | ||
RHEL_8: | ||
description: 'RHEL 8' | ||
required: true | ||
default: false | ||
type: boolean | ||
DEBUG: | ||
description: 'Debug mode' | ||
required: true | ||
default: false | ||
type: boolean | ||
DESTROY: | ||
description: 'Destroy instances after run' | ||
required: true | ||
default: true | ||
type: boolean | ||
|
||
env: | ||
LABEL: ubuntu-latest | ||
|
||
jobs: | ||
launch-tests: | ||
runs-on: $LABEL | ||
|
||
steps: | ||
- name: Set up Git | ||
uses: actions/checkout@v3 |
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,172 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
## [4.10.0] | ||
|
||
### Changed | ||
|
||
- Added post-install validations for the Wazuh manager and Filebeat. ([#3059](https://github.com/wazuh/wazuh-packages/pull/3059)) | ||
|
||
### Fixed | ||
|
||
- Fixed Wazuh API validation ([#29](https://github.com/wazuh/wazuh-installation-assistant/pull/29)) | ||
|
||
## [4.9.1] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.9.1 | ||
|
||
## [4.9.0] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.9.0 | ||
|
||
## [4.8.1] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.8.1 | ||
|
||
## [4.8.0] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.8.0 | ||
|
||
## [4.7.5] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.7.5 | ||
|
||
## [4.7.4] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.7.4 | ||
|
||
## [4.7.3] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.7.3 | ||
|
||
## [4.7.2] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.7.2 | ||
|
||
## [4.7.1] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.7.1 | ||
|
||
## [v4.7.0] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.7.0 | ||
|
||
## [v4.6.0] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.6.0 | ||
|
||
## [v4.5.4] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.5.4 | ||
|
||
## [v4.5.3] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.5.3 | ||
|
||
## [v4.5.2] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.5.2 | ||
|
||
## [v4.5.1] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.5.1 | ||
|
||
## [v4.5.0] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.5.0 | ||
|
||
## [v4.4.5] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.4.5 | ||
|
||
## [v4.4.4] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.4.4 | ||
|
||
## [v4.4.3] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.4.3 | ||
|
||
## [v4.4.2] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.4.2 | ||
|
||
## [v4.3.11] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.11 | ||
|
||
## [v4.4.1] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.4.1 | ||
|
||
## [v4.4.0] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.4.0 | ||
|
||
## [v4.3.10] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.10 | ||
|
||
## [v4.3.9] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.9 | ||
|
||
## [v4.3.8] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.8 | ||
|
||
## [v4.3.7] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.7 | ||
|
||
## [v4.3.6] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.6 | ||
|
||
## [v4.3.5] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.5 | ||
|
||
## [v4.3.4] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.4 | ||
|
||
## [v4.3.3] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.3 | ||
|
||
## [v4.3.2] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.2 | ||
|
||
## [v4.2.7] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.2.7 | ||
|
||
## [v4.3.1] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.1 | ||
|
||
## [v4.3.0] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.3.0 | ||
|
||
## [v4.2.7] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.2.7 | ||
|
||
## [v4.2.6] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.2.7 | ||
|
||
## [v4.2.5] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.2.5 | ||
|
||
## [v4.2.4] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.2.4 | ||
|
||
## [v4.2.3] | ||
|
||
- https://github.com/wazuh/wazuh-packages/releases/tag/v4.2.3 |
Oops, something went wrong.