Deploy a Wazuh cluster with a basic indexer and dashboard stack on Kubernetes .
master
branch contains the latest code, be aware of possible bugs on this branch.stable
branch on correspond to the last Wazuh stable version.
The instructions.md file describes how to deploy Wazuh on Kubernetes.
├── CHANGELOG.md
├── cleanup.md
├── envs
│ ├── eks
│ │ ├── dashboard-resources.yaml
│ │ ├── indexer-resources.yaml
│ │ ├── kustomization.yml
│ │ ├── storage-class.yaml
│ │ ├── wazuh-master-resources.yaml
│ │ └── wazuh-worker-resources.yaml
│ └── local-env
│ ├── indexer-resources.yaml
│ ├── kustomization.yml
│ ├── storage-class.yaml
│ └── wazuh-resources.yaml
├── instructions.md
├── LICENSE
├── local-environment.md
├── README.md
├── upgrade.md
├── VERSION
└── wazuh
├── base
│ ├── storage-class.yaml
│ └── wazuh-ns.yaml
├── certs
│ ├── dashboard_http
│ │ └── generate_certs.sh
│ └── indexer_cluster
│ └── generate_certs.sh
├── indexer_stack
│ ├── wazuh-dashboard
│ │ ├── dashboard_conf
│ │ │ └── opensearch_dashboards.yml
│ │ ├── dashboard-deploy.yaml
│ │ └── dashboard-svc.yaml
│ └── wazuh-indexer
│ ├── cluster
│ │ ├── indexer-api-svc.yaml
│ │ └── indexer-sts.yaml
│ ├── indexer_conf
│ │ ├── internal_users.yml
│ │ └── opensearch.yml
│ └── indexer-svc.yaml
├── kustomization.yml
├── secrets
│ ├── dashboard-cred-secret.yaml
│ ├── indexer-cred-secret.yaml
│ ├── wazuh-api-cred-secret.yaml
│ ├── wazuh-authd-pass-secret.yaml
│ └── wazuh-cluster-key-secret.yaml
└── wazuh_managers
├── wazuh-cluster-svc.yaml
├── wazuh_conf
│ ├── master.conf
│ └── worker.conf
├── wazuh-master-sts.yaml
├── wazuh-master-svc.yaml
├── wazuh-workers-svc.yaml
└── wazuh-worker-sts.yaml
master
branch contains the latest code, be aware of possible bugs on this branch.stable
branch on correspond to the last Wazuh stable version.
To deploy a cluster on your local environment (like Minikube, Kind or Microk8s) read the instructions on local-environment.md.
If you want to contribute to our project please don't hesitate to send a pull request. You can also join our users mailing list or the Wazuh Slack community channel to ask questions and participate in discussions.
Based on the previous work from JPLachance coveo/wazuh-kubernetes (2018/11/22).
WAZUH Copyright (C) 2016, Wazuh Inc. (License GPLv2)