version bumping ..
This commit is contained in:
parent
83512d6941
commit
14cd09a034
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,6 +1,16 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [v3.9.3_7.2.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Update to Wazuh v3.9.3 ([rshad](https://github.com/rshad) [PR#206](https://github.com/wazuh/wazuh-ansible/pull/206#))
|
||||||
|
- Added Versioning Control for Wazuh stack's components installation, so now it's possible to specify which package to install for wazuh-manager, wazuh-agent, Filebeat, Elasticsearch and Kibana. ([rshad](https://github.com/rshad) [PR#206](https://github.com/wazuh/wazuh-ansible/pull/206#))
|
||||||
|
- Fixes for Molecule testing issues. Issues such as Ansible-Lint and None-Idempotent tasks. ([rshad](https://github.com/rshad) [PR#206](https://github.com/wazuh/wazuh-ansible/pull/206#))
|
||||||
|
- Fixes for Wazuh components installations' related issues. Such issues were related to determined OS distributions such as `Ubuntu Trusty` and `CetOS 6`. ([rshad](https://github.com/rshad) [PR#206](https://github.com/wazuh/wazuh-ansible/pull/206#))
|
||||||
|
- Created Ansible playbook and role in order to automate the uninstallation of already installed Wazuh components. ([rshad](https://github.com/rshad) [PR#206](https://github.com/wazuh/wazuh-ansible/pull/206#))
|
||||||
|
|
||||||
|
|
||||||
## [v3.9.2_7.1.1]
|
## [v3.9.2_7.1.1]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
2
VERSION
2
VERSION
@ -1,2 +1,2 @@
|
|||||||
WAZUH-ANSIBLE_VERSION="v3.9.1"
|
WAZUH-ANSIBLE_VERSION="v3.9.3"
|
||||||
REVISION="3901"
|
REVISION="3901"
|
||||||
|
|||||||
@ -9,7 +9,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|||||||
|
|
||||||
def get_wazuh_version():
|
def get_wazuh_version():
|
||||||
"""This return the version of Wazuh."""
|
"""This return the version of Wazuh."""
|
||||||
return "3.9.0"
|
return "3.9.3"
|
||||||
|
|
||||||
|
|
||||||
def test_wazuh_packages_are_installed(host):
|
def test_wazuh_packages_are_installed(host):
|
||||||
|
|||||||
@ -10,7 +10,7 @@ def test_elasticsearch_is_installed(host):
|
|||||||
"""Test if the elasticsearch package is installed."""
|
"""Test if the elasticsearch package is installed."""
|
||||||
elasticsearch = host.package("elasticsearch")
|
elasticsearch = host.package("elasticsearch")
|
||||||
assert elasticsearch.is_installed
|
assert elasticsearch.is_installed
|
||||||
assert elasticsearch.version.startswith('7.1.1')
|
assert elasticsearch.version.startswith('7.2.0')
|
||||||
|
|
||||||
|
|
||||||
def test_elasticsearch_is_running(host):
|
def test_elasticsearch_is_running(host):
|
||||||
|
|||||||
@ -10,4 +10,4 @@ def test_filebeat_is_installed(host):
|
|||||||
"""Test if the elasticsearch package is installed."""
|
"""Test if the elasticsearch package is installed."""
|
||||||
filebeat = host.package("filebeat")
|
filebeat = host.package("filebeat")
|
||||||
assert filebeat.is_installed
|
assert filebeat.is_installed
|
||||||
assert filebeat.version.startswith('7.1.1')
|
assert filebeat.version.startswith('7.2.0')
|
||||||
|
|||||||
@ -14,7 +14,7 @@ def test_port_kibana_is_open(host):
|
|||||||
def test_find_correct_elasticsearch_version(host):
|
def test_find_correct_elasticsearch_version(host):
|
||||||
"""Test if we find the kibana/elasticsearch version in package.json"""
|
"""Test if we find the kibana/elasticsearch version in package.json"""
|
||||||
kibana = host.file("/usr/share/kibana/plugins/wazuh/package.json")
|
kibana = host.file("/usr/share/kibana/plugins/wazuh/package.json")
|
||||||
assert kibana.contains("7.1.1")
|
assert kibana.contains("7.2.0")
|
||||||
|
|
||||||
|
|
||||||
def test_wazuh_plugin_installed(host):
|
def test_wazuh_plugin_installed(host):
|
||||||
|
|||||||
@ -9,7 +9,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|||||||
|
|
||||||
def get_wazuh_version():
|
def get_wazuh_version():
|
||||||
"""This return the version of Wazuh."""
|
"""This return the version of Wazuh."""
|
||||||
return "3.9.0"
|
return "3.9.3"
|
||||||
|
|
||||||
|
|
||||||
def test_ossec_package_installed(Package):
|
def test_ossec_package_installed(Package):
|
||||||
|
|||||||
@ -4,7 +4,7 @@ elasticsearch_node_name: node-1
|
|||||||
elasticsearch_http_port: 9200
|
elasticsearch_http_port: 9200
|
||||||
elasticsearch_network_host: 127.0.0.1
|
elasticsearch_network_host: 127.0.0.1
|
||||||
elasticsearch_jvm_xms: null
|
elasticsearch_jvm_xms: null
|
||||||
elastic_stack_version: 7.1.1
|
elastic_stack_version: 7.2.0
|
||||||
single_node: false
|
single_node: false
|
||||||
elasticsearch_bootstrap_node: false
|
elasticsearch_bootstrap_node: false
|
||||||
elasticsearch_master_candidate: false
|
elasticsearch_master_candidate: false
|
||||||
|
|||||||
@ -5,8 +5,8 @@ elasticsearch_http_port: "9200"
|
|||||||
elasticsearch_network_host: "127.0.0.1"
|
elasticsearch_network_host: "127.0.0.1"
|
||||||
kibana_server_host: "0.0.0.0"
|
kibana_server_host: "0.0.0.0"
|
||||||
kibana_server_port: "5601"
|
kibana_server_port: "5601"
|
||||||
elastic_stack_version: 7.1.1
|
elastic_stack_version: 7.2.0
|
||||||
wazuh_version: 3.9.2
|
wazuh_version: 3.9.3
|
||||||
|
|
||||||
# Xpack Security
|
# Xpack Security
|
||||||
kibana_xpack_security: false
|
kibana_xpack_security: false
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
filebeat_version: 7.1.1
|
filebeat_version: 7.2.0
|
||||||
|
|
||||||
filebeat_create_config: true
|
filebeat_create_config: true
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
wazuh_agent_version: 3.9.0
|
wazuh_agent_version: 3.9.3
|
||||||
wazuh_managers:
|
wazuh_managers:
|
||||||
- address: 127.0.0.1
|
- address: 127.0.0.1
|
||||||
port: 1514
|
port: 1514
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
wazuh_manager_api_version: 3.9.0
|
wazuh_manager_api_version: 3.9.3
|
||||||
|
|
||||||
wazuh_manager_fqdn: "wazuh-server"
|
wazuh_manager_fqdn: "wazuh-server"
|
||||||
wazuh_manager_package_state: latest
|
wazuh_manager_package_state: latest
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user