Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/eks-deployment-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
BRANCH_VERSION:
description: 'Branch version to deploy'
required: true
default: 'main'
default: 'v1.2.3-alpha7'

permissions:
id-token: write # This is required for requesting the JWT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/local-deployment-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
BRANCH_VERSION:
description: 'Branch version to deploy'
required: true
default: 'main'
default: 'v1.2.3-alpha7'

permissions:
id-token: write # This is required for requesting the JWT
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All notable changes to this project will be documented in this file.

## [1.2.3]

### Added

- None

### Changed

- None

### Fixed

- None

### Deleted

- None

## [5.0.0]

### Added
Expand Down
4 changes: 2 additions & 2 deletions VERSION.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "5.0.0",
"stage": "beta1"
"version": "1.2.3",
"stage": "alpha7"
}
4 changes: 2 additions & 2 deletions docs/ref/backup-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

For backup and restore procedures, refer to the documentation for each component:

- [Wazuh manager](https://github.com/wazuh/wazuh/blob/v5.0.0/docs/ref/backup-restore.md)
- [Wazuh agent](https://github.com/wazuh/wazuh-agent/blob/v5.0.0/docs/ref/backup-restore.md)
- [Wazuh manager](https://github.com/wazuh/wazuh/blob/v1.2.3/docs/ref/backup-restore.md)
- [Wazuh agent](https://github.com/wazuh/wazuh-agent/blob/v1.2.3/docs/ref/backup-restore.md)

## Kubernetes-specific considerations

Expand Down
24 changes: 12 additions & 12 deletions docs/ref/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Note: You can skip this step and the services will be accessible using the Load
Clone this repository to deploy the necessary services and pods.

```bash
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v5.0.0 --depth=1
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v1.2.3 --depth=1
cd wazuh-kubernetes
```

Expand All @@ -156,8 +156,8 @@ Download the `wazuh-certs-tool.sh` script. This creates the certificates that en

```bash
cd wazuh
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.0-1.sh
curl -so config.yml https://packages.wazuh.com/5.0/config-5.0.0-1.yml
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/1.2/wazuh-certs-tool-1.2.3-1.sh
curl -so config.yml https://packages.wazuh.com/1.2/config-1.2.3-1.yml
```

**3.1.2 Edit the config.yml file with the configuration of the Wazuh components to be deployed**:
Expand Down Expand Up @@ -358,18 +358,18 @@ minikube start --network-plugin=cni --cni=calico
You will also have to load the docker images used by Wazuh into Minikube:

```bash
docker pull wazuh/wazuh-indexer:5.0.0
docker pull wazuh/wazuh-manager:5.0.0
docker pull wazuh/wazuh-dashboard:5.0.0
minikube image load wazuh/wazuh-indexer:5.0.0
minikube image load wazuh/wazuh-manager:5.0.0
minikube image load wazuh/wazuh-dashboard:5.0.0
docker pull wazuh/wazuh-indexer:1.2.3-alpha7
docker pull wazuh/wazuh-manager:1.2.3-alpha7
docker pull wazuh/wazuh-dashboard:1.2.3-alpha7
minikube image load wazuh/wazuh-indexer:1.2.3-alpha7
minikube image load wazuh/wazuh-manager:1.2.3-alpha7
minikube image load wazuh/wazuh-dashboard:1.2.3-alpha7
```

#### Clone this repository

```bash
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v5.0.0 --depth=1
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v1.2.3 --depth=1
cd wazuh-kubernetes
```

Expand All @@ -381,8 +381,8 @@ Download the `wazuh-certs-tool.sh` script. This creates the certificates that en

```bash
cd wazuh/
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.0-1.sh
curl -so config.yml https://packages.wazuh.com/5.0/config-5.0.0-1.yml
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/1.2/wazuh-certs-tool-1.2.3-1.sh
curl -so config.yml https://packages.wazuh.com/1.2/config-1.2.3-1.yml
```

Edit the `config.yml` file to set corresponding name and IP address for each Wazuh component.
Expand Down
2 changes: 1 addition & 1 deletion envs/eks/kustomization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# License (version 2) as published by the FSF - Free Software
# Foundation.

apiVersion: kustomize.config.k8s.io/v1beta1
apiVersion: kustomize.config.k8s.io/v1alpha7
kind: Kustomization
resources:
- ../../wazuh
Expand Down
2 changes: 1 addition & 1 deletion envs/local-env/kustomization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# License (version 2) as published by the FSF - Free Software
# Foundation.

apiVersion: kustomize.config.k8s.io/v1beta1
apiVersion: kustomize.config.k8s.io/v1alpha7
kind: Kustomization
resources:
- ../../wazuh
Expand Down
2 changes: 1 addition & 1 deletion traefik/runtime/kustomization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# License (version 2) as published by the FSF - Free Software
# Foundation.

apiVersion: kustomize.config.k8s.io/v1beta1
apiVersion: kustomize.config.k8s.io/v1alpha7
kind: Kustomization

# Adds traefik namespace to all resources.
Expand Down
2 changes: 1 addition & 1 deletion wazuh/indexer_stack/wazuh-dashboard/dashboard-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
runAsGroup: 1000
containers:
- name: wazuh-dashboard
image: 'wazuh/wazuh-dashboard:5.0.0'
image: 'wazuh/wazuh-dashboard:1.2.3-alpha7'
resources:
limits:
cpu: 500m
Expand Down
2 changes: 1 addition & 1 deletion wazuh/indexer_stack/wazuh-indexer/cluster/indexer-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
privileged: true
containers:
- name: wazuh-indexer
image: 'wazuh/wazuh-indexer:5.0.0'
image: 'wazuh/wazuh-indexer:1.2.3-alpha7'
resources:
limits:
cpu: 500m
Expand Down
2 changes: 1 addition & 1 deletion wazuh/kustomization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# License (version 2) as published by the FSF - Free Software
# Foundation.

apiVersion: kustomize.config.k8s.io/v1beta1
apiVersion: kustomize.config.k8s.io/v1alpha7
kind: Kustomization

# Adds wazuh namespace to all resources.
Expand Down
4 changes: 2 additions & 2 deletions wazuh/wazuh_managers/wazuh-master-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
fsGroup: 999
initContainers:
- name: init-wazuh-etc
image: 'wazuh/wazuh-manager:5.0.0'
image: 'wazuh/wazuh-manager:1.2.3-alpha7'
command:
- /bin/sh
- -c
Expand All @@ -62,7 +62,7 @@ spec:
mountPath: /etc/wazuh-certs-final
containers:
- name: wazuh-manager
image: 'wazuh/wazuh-manager:5.0.0'
image: 'wazuh/wazuh-manager:1.2.3-alpha7'
resources:
limits:
cpu: 400m
Expand Down
4 changes: 2 additions & 2 deletions wazuh/wazuh_managers/wazuh-worker-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
fsGroup: 999
initContainers:
- name: init-wazuh-etc
image: 'wazuh/wazuh-manager:5.0.0'
image: 'wazuh/wazuh-manager:1.2.3-alpha7'
command:
- /bin/sh
- -c
Expand All @@ -69,7 +69,7 @@ spec:
mountPath: /etc/wazuh-certs-final
containers:
- name: wazuh-manager
image: 'wazuh/wazuh-manager:5.0.0'
image: 'wazuh/wazuh-manager:1.2.3-alpha7'
resources:
limits:
cpu: 400m
Expand Down
Loading