-
Notifications
You must be signed in to change notification settings - Fork 23
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
Test ISM rollover + alias initialization update #83
Comments
UpgradeVagrantfile
Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |vb|
vb.memory = "4096"
vb.cpus = "4"
end
config.vm.box = "generic/rhel7"
config.vm.synced_folder ".", "/vagrant"
config.vm.network "private_network", ip: "192.168.56.10"
config.vm.provision "shell", inline: <<-SHELL
# Disable firewall
systemctl stop firewalld
systemctl disable firewalld
curl -sO https://packages.wazuh.com/4.7/wazuh-install.sh && bash ./wazuh-install.sh
SHELL
end
|
UpgradeProcedure (commands)
|
🟢 The initial indices are created properly, using all the settings from the templates. However, there are 2 problems:
Although the second one doesn't present any major issue, the first one does, as Filebeat continues to send events to the old indices ( |
Checking the DEB packageHaving successfully completed an upgrade using the RPM package, there is no point on repeating the process for the deb package, as the process is the same. Instead, we'll check that the template is at the expected path To extract the package, use: ar x wazuh-indexer_4.8.0-wp2697_amd64.deb
tar xvf data.tar.xz
Test result: 🟢 |
Testing completed. As a result, new issues have been opened. |
Description
Test the new
wazuh-indexer
packages for 4.8.0 containing the fix for the rollover + alias initialization bug found in #79.The packages have been generated by @wazuh/qa team and their links are available here:
We need to test these packages following the installation and upgrade guides for 4.8.0 (master branch contains latest code).
Issues
The text was updated successfully, but these errors were encountered: