@@ -115,6 +115,14 @@ indexer:
115115 # Must have the key "internal_users.yml"
116116 # Please read https://documentation.wazuh.com/current/deployment-options/docker/wazuh-container.html#change-the-password-of-wazuh-users
117117 indexerInternalUsersSecretName : " "
118+ # Distinguished Name (DN) pattern for node certificates in plugins.security.nodes_dn
119+ # This whitelist controls which certificates are trusted for node-to-node communication.
120+ # Must match the CN (Common Name) in your node certificates issued by cert-manager.
121+ # Default: "*.{release-name}" (e.g., "*.wazuh" for release "wazuh")
122+ # Example: If your cert-manager issues certs with CN=wazuh, set this to "wazuh"
123+ # Example: If your cert-manager issues certs with CN=*.wazuh-indexer, set this to "*.wazuh-indexer"
124+ # Leave empty to auto-generate based on release name
125+ nodesDN : " "
118126
119127 imagePullSecrets : []
120128
@@ -234,11 +242,14 @@ manager:
234242 # authd.pass
235243 existingSecretName : " "
236244
237- # # The manager service that is going to be responsible for the agent registration
238- # # and the agent events
245+ # # Exposes the whole manager stack (master and workers) to agents and users under a single service.
246+ # # Port 1515 registers agents (master pods), port 55000 serves the Wazuh API (master pods)
247+ # # and port 1514 receives agent events (worker pods)
239248 service :
249+ enabled : true
240250 type : LoadBalancer
241251 annotations : {}
252+ externalTrafficPolicy : Cluster
242253
243254 master :
244255 podSecurityContext :
@@ -308,6 +319,12 @@ manager:
308319 size : " 25Gi"
309320 existingClaim : " "
310321
322+ service :
323+ enabled : true
324+ type : ClusterIP
325+ annotations : {}
326+ externalTrafficPolicy : " "
327+
311328 workers :
312329 replicaCount : 1
313330
@@ -378,6 +395,12 @@ manager:
378395 size : " 25Gi"
379396 existingClaim : " "
380397
398+ service :
399+ enabled : true
400+ type : ClusterIP
401+ annotations : {}
402+ externalTrafficPolicy : " "
403+
381404dashboard :
382405 replicaCount : 1
383406
0 commit comments