Skip to content

Commit cd3df41

Browse files
committed
feat: revert 1392-testing-workflow-revert references
1 parent 7f299c7 commit cd3df41

12 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/eks-deployment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
BRANCH_VERSION:
88
description: 'Branch version to deploy'
99
required: true
10-
default: 'v1.2.3-alpha7'
10+
default: 'main'
1111

1212
permissions:
1313
id-token: write # This is required for requesting the JWT

.github/workflows/local-deployment-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
BRANCH_VERSION:
99
description: 'Branch version to deploy'
1010
required: true
11-
default: 'v1.2.3-alpha7'
11+
default: 'main'
1212

1313
permissions:
1414
id-token: write # This is required for requesting the JWT

docs/ref/backup-restore.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

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

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

88
## Kubernetes-specific considerations
99

docs/ref/getting-started/installation.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Note: You can skip this step and the services will be accessible using the Load
142142
Clone this repository to deploy the necessary services and pods.
143143

144144
```bash
145-
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v1.2.3 --depth=1
145+
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v5.0.0 --depth=1
146146
cd wazuh-kubernetes
147147
```
148148

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

157157
```bash
158158
cd wazuh
159-
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/1.2/wazuh-certs-tool-1.2.3-1.sh
160-
curl -so config.yml https://packages.wazuh.com/1.2/config-1.2.3-1.yml
159+
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.0-1.sh
160+
curl -so config.yml https://packages.wazuh.com/5.0/config-5.0.0-1.yml
161161
```
162162

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

360360
```bash
361-
docker pull wazuh/wazuh-indexer:1.2.3-alpha7
362-
docker pull wazuh/wazuh-manager:1.2.3-alpha7
363-
docker pull wazuh/wazuh-dashboard:1.2.3-alpha7
364-
minikube image load wazuh/wazuh-indexer:1.2.3-alpha7
365-
minikube image load wazuh/wazuh-manager:1.2.3-alpha7
366-
minikube image load wazuh/wazuh-dashboard:1.2.3-alpha7
361+
docker pull wazuh/wazuh-indexer:5.0.0
362+
docker pull wazuh/wazuh-manager:5.0.0
363+
docker pull wazuh/wazuh-dashboard:5.0.0
364+
minikube image load wazuh/wazuh-indexer:5.0.0
365+
minikube image load wazuh/wazuh-manager:5.0.0
366+
minikube image load wazuh/wazuh-dashboard:5.0.0
367367
```
368368

369369
#### Clone this repository
370370

371371
```bash
372-
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v1.2.3 --depth=1
372+
git clone https://github.com/wazuh/wazuh-kubernetes.git -b v5.0.0 --depth=1
373373
cd wazuh-kubernetes
374374
```
375375

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

382382
```bash
383383
cd wazuh/
384-
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/1.2/wazuh-certs-tool-1.2.3-1.sh
385-
curl -so config.yml https://packages.wazuh.com/1.2/config-1.2.3-1.yml
384+
curl -so wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.0-1.sh
385+
curl -so config.yml https://packages.wazuh.com/5.0/config-5.0.0-1.yml
386386
```
387387

388388
Edit the `config.yml` file to set corresponding name and IP address for each Wazuh component.

envs/eks/kustomization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# License (version 2) as published by the FSF - Free Software
66
# Foundation.
77

8-
apiVersion: kustomize.config.k8s.io/v1alpha7
8+
apiVersion: kustomize.config.k8s.io/v1beta1
99
kind: Kustomization
1010
resources:
1111
- ../../wazuh

envs/local-env/kustomization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# License (version 2) as published by the FSF - Free Software
66
# Foundation.
77

8-
apiVersion: kustomize.config.k8s.io/v1alpha7
8+
apiVersion: kustomize.config.k8s.io/v1beta1
99
kind: Kustomization
1010
resources:
1111
- ../../wazuh

traefik/runtime/kustomization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# License (version 2) as published by the FSF - Free Software
66
# Foundation.
77

8-
apiVersion: kustomize.config.k8s.io/v1alpha7
8+
apiVersion: kustomize.config.k8s.io/v1beta1
99
kind: Kustomization
1010

1111
# Adds traefik namespace to all resources.

wazuh/indexer_stack/wazuh-dashboard/dashboard-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
runAsGroup: 1000
3737
containers:
3838
- name: wazuh-dashboard
39-
image: 'wazuh/wazuh-dashboard:1.2.3-alpha7'
39+
image: 'wazuh/wazuh-dashboard:5.0.0'
4040
resources:
4141
limits:
4242
cpu: 500m

wazuh/indexer_stack/wazuh-indexer/cluster/indexer-sts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ spec:
5959
privileged: true
6060
containers:
6161
- name: wazuh-indexer
62-
image: 'wazuh/wazuh-indexer:1.2.3-alpha7'
62+
image: 'wazuh/wazuh-indexer:5.0.0'
6363
resources:
6464
limits:
6565
cpu: 500m

wazuh/kustomization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# License (version 2) as published by the FSF - Free Software
66
# Foundation.
77

8-
apiVersion: kustomize.config.k8s.io/v1alpha7
8+
apiVersion: kustomize.config.k8s.io/v1beta1
99
kind: Kustomization
1010

1111
# Adds wazuh namespace to all resources.

0 commit comments

Comments
 (0)