-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wazuh certificates were stored in etc/kayobe/ansible/wazuh/certificates or etc/kayobe/ansible/wazuh/custom_certificates. There are a few issues with these locations: - they are in the base configuration, so not scoped to a Kayobe environment. This means that multiple environments could have duplicate certificates - it’s under the ansible directory, but isn’t really Ansible code - it’s configuration @jackhodgkiss pointed out that we can use the same directory for custom certificates and auto-generated certificates
- Loading branch information
Showing
5 changed files
with
50 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
releasenotes/notes/moved-wazuh-certs-b5173d264f543b14.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
upgrade: | ||
- | | ||
The path used for Wazuh certificates has changed. They are now stored in | ||
environment directory e.g | ||
``$KAYOBE_CONFIG_PATH/etc/kayobe/environments/<environment>/wazuh-certificates`` | ||
or ``$KAYOBE_CONFIG_PATH/etc/kayobe/wazuh-certificates`` if not using | ||
environments. The certificates should be moved from | ||
``$KAYOBE_CONFIG_PATH/etc/kayobe/ansible/wazuh/certificates`` to the new | ||
location. | ||
- | | ||
The ``local_custom_certs_path`` variable has been removed. Custom wazuh | ||
certificates should be moved to | ||
``$KAYOBE_CONFIG_PATH/etc/kayobe/environments/<environment>/wazuh-certificates/certs`` | ||
if using environments, or | ||
``$KAYOBE_CONFIG_PATH/etc/kayobe/wazuh-certificates/certs`` if not. |