mirror of
https://github.com/wazuh/wazuh-kubernetes.git
synced 2025-12-10 00:38:21 -06:00
Fixed unsigned merge commit
This commit is contained in:
parent
b351c9923e
commit
c9dd108738
36
CHANGELOG.md
36
CHANGELOG.md
@ -2,6 +2,42 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [4.7.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update to Wazuh version [4.7.0](https://github.com/wazuh/wazuh/blob/v4.7.0/CHANGELOG.md#v470)
|
||||||
|
|
||||||
|
## [4.6.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update to Wazuh version [4.6.0](https://github.com/wazuh/wazuh/blob/v4.6.0/CHANGELOG.md#v460)
|
||||||
|
|
||||||
|
## [4.5.1]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update to Wazuh version [4.5.1](https://github.com/wazuh/wazuh/blob/v4.5.1/CHANGELOG.md#v451)
|
||||||
|
|
||||||
|
## [4.5.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update to Wazuh version [4.5.0](https://github.com/wazuh/wazuh/blob/v4.5.0/CHANGELOG.md#v450)
|
||||||
|
|
||||||
|
## [4.4.5]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update to Wazuh version [4.4.5](https://github.com/wazuh/wazuh/blob/v4.4.5/CHANGELOG.md#v445)
|
||||||
|
|
||||||
|
## [4.4.4]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Update to Wazuh version [4.4.4](https://github.com/wazuh/wazuh/blob/v4.4.4/CHANGELOG.md#v444)
|
||||||
|
|
||||||
## [4.4.3]
|
## [4.4.3]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
4
VERSION
4
VERSION
@ -1,2 +1,2 @@
|
|||||||
VERSION="4.4.3"
|
VERSION="4.7.0"
|
||||||
REVISION="40409"
|
REVISION="40700"
|
||||||
|
|||||||
24
upgrade.md
24
upgrade.md
@ -7,20 +7,16 @@ When upgrading our version of Wazuh installed in Kubernetes we must follow the f
|
|||||||
Our Kubernetes deployment uses our Wazuh images from Docker. If we look at the following code extracted from the Wazuh configuration using Docker we can see which directories and files are used in the upgrades.
|
Our Kubernetes deployment uses our Wazuh images from Docker. If we look at the following code extracted from the Wazuh configuration using Docker we can see which directories and files are used in the upgrades.
|
||||||
|
|
||||||
```
|
```
|
||||||
DATA_DIRS[((i++))]="api/configuration"
|
PERMANENT_DATA[((i++))]="/var/ossec/api/configuration"
|
||||||
DATA_DIRS[((i++))]="etc"
|
PERMANENT_DATA[((i++))]="/var/ossec/etc"
|
||||||
DATA_DIRS[((i++))]="logs"
|
PERMANENT_DATA[((i++))]="/var/ossec/logs"
|
||||||
DATA_DIRS[((i++))]="queue/db"
|
PERMANENT_DATA[((i++))]="/var/ossec/queue"
|
||||||
DATA_DIRS[((i++))]="queue/rootcheck"
|
PERMANENT_DATA[((i++))]="/var/ossec/agentless"
|
||||||
DATA_DIRS[((i++))]="queue/agent-groups"
|
PERMANENT_DATA[((i++))]="/var/ossec/var/multigroups"
|
||||||
DATA_DIRS[((i++))]="queue/agent-info"
|
PERMANENT_DATA[((i++))]="/var/ossec/integrations"
|
||||||
DATA_DIRS[((i++))]="queue/agents-timestamp"
|
PERMANENT_DATA[((i++))]="/var/ossec/active-response/bin"
|
||||||
DATA_DIRS[((i++))]="queue/agentless"
|
PERMANENT_DATA[((i++))]="/var/ossec/wodles"
|
||||||
DATA_DIRS[((i++))]="queue/cluster"
|
PERMANENT_DATA[((i++))]="/etc/filebeat"
|
||||||
DATA_DIRS[((i++))]="queue/rids"
|
|
||||||
DATA_DIRS[((i++))]="queue/fts"
|
|
||||||
DATA_DIRS[((i++))]="var/multigroups"
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Any file that we modify referring to the files previously mentioned, will be changed also the corresponding volume. When the corresponding Wazuh pod is created again, it will get the cited files from the volume, thus keeping the changes made previously.
|
Any file that we modify referring to the files previously mentioned, will be changed also the corresponding volume. When the corresponding Wazuh pod is created again, it will get the cited files from the volume, thus keeping the changes made previously.
|
||||||
|
|||||||
@ -32,7 +32,7 @@ spec:
|
|||||||
secretName: dashboard-certs
|
secretName: dashboard-certs
|
||||||
containers:
|
containers:
|
||||||
- name: wazuh-dashboard
|
- name: wazuh-dashboard
|
||||||
image: 'wazuh/wazuh-dashboard:4.4.3'
|
image: 'wazuh/wazuh-dashboard:4.7.0'
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 500m
|
cpu: 500m
|
||||||
|
|||||||
@ -59,7 +59,7 @@ spec:
|
|||||||
privileged: true
|
privileged: true
|
||||||
containers:
|
containers:
|
||||||
- name: wazuh-indexer
|
- name: wazuh-indexer
|
||||||
image: 'wazuh/wazuh-indexer:4.4.3'
|
image: 'wazuh/wazuh-indexer:4.7.0'
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 500m
|
cpu: 500m
|
||||||
|
|||||||
@ -41,7 +41,7 @@ spec:
|
|||||||
fsGroup: 101
|
fsGroup: 101
|
||||||
containers:
|
containers:
|
||||||
- name: wazuh-manager
|
- name: wazuh-manager
|
||||||
image: 'wazuh/wazuh-manager:4.4.3'
|
image: 'wazuh/wazuh-manager:4.7.0'
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 400m
|
cpu: 400m
|
||||||
|
|||||||
@ -44,7 +44,7 @@ spec:
|
|||||||
fsGroup: 101
|
fsGroup: 101
|
||||||
containers:
|
containers:
|
||||||
- name: wazuh-manager
|
- name: wazuh-manager
|
||||||
image: 'wazuh/wazuh-manager:4.4.3'
|
image: 'wazuh/wazuh-manager:4.7.0'
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 400m
|
cpu: 400m
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user