
Wazuh Server
Channel | Revision | Published | Runs on |
---|---|---|---|
4.11/stable | 167 | 07 Jul 2025 | |
4.11/edge | 200 | 01 Oct 2025 |
juju deploy wazuh-server --channel 4.11/stable
Deploy Kubernetes operators easily with Juju, the Universal Operator Lifecycle Manager. Need a Kubernetes cluster? Install MicroK8s to create a full CNCF-certified Kubernetes system in under 60 seconds.
Platform:
How to deploy to production
This page describes a typical deployment to production.
Prerequisites
Create the two required models:
wazuh-indexer
: a machine modelwazuh-server
: a Kubernetes model
Open network accesses:
- To the
wazuh-dashboard
throughhttps
- For the users who will need to access the dashboard.
- To the
wazuh-server
through port6514
- For the rsyslog server who will send their logs to Wazuh.
- To the
wazuh-indexer
through port9200
- For
wazuh-server
to interact withopensearch
- For
Deploy the project
The full stack can be deployed using the terraform module hosted at https://github.com/canonical/wazuh-server-operator/tree/main/terraform/product.
A typical deployment would be configured like this:
locals {
juju_indexer_model_name = "wazuh-indexer"
juju_server_model_name = "wazuh-server"
}
data "juju_model" "wazuh_server" {
name = local.juju_server_model_name
}
module "wazuh" {
source = "git::https://github.com/canonical/wazuh-server-operator//terraform/product?ref=4.11/stable"
model = local.juju_server_model_name
indexer_model = local.juju_indexer_model_name
wazuh_indexer = {
channel = "4.11/stable"
}
wazuh_dashboard = {
channel = "4.11/stable"
}
wazuh_server = {
channel = "4.11/stable"
}
traefik_k8s = {
}
self_signed_certificates = {
channel = "1/stable"
}
providers = {
juju = juju
juju.wazuh_indexer = juju.wazuh_indexer
}
}