Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ cloudera.exe Release Notes

.. contents:: Topics

v3.2.0
======

Minor Changes
-------------

- Add Cloudera Edge Flow Manager role (https://github.com/cloudera-labs/cloudera.exe/pull/295)
- Add Docker daemon configuration input docker role (https://github.com/cloudera-labs/cloudera.exe/pull/303)
- Add Docker network configuration for pgadmin (https://github.com/cloudera-labs/cloudera.exe/pull/304)
- Add FreeIPA role for issuing TLS certificates to enrolled hosts (https://github.com/cloudera-labs/cloudera.exe/pull/307)
- Add ownership management for generated TLS certificate and key files (https://github.com/cloudera-labs/cloudera.exe/pull/310)
- Add role for MiNiFi C++ Agent (https://github.com/cloudera-labs/cloudera.exe/pull/309)
- Add tls_keystores role (https://github.com/cloudera-labs/cloudera.exe/pull/308)
- Constrain OS-specific variables lookup to role var directory (https://github.com/cloudera-labs/cloudera.exe/pull/306)

New Roles
---------

- cloudera.exe.efm - Install and configure Cloudera Edge Flow Manager (EFM).
- cloudera.exe.freeipa_server_enrolled_tls - Issue a TLS certificate and private key for an enrolled host.
- cloudera.exe.minifi_agent_cpp - Install and configure Cloudera MiNiFi C++ Agent.
- cloudera.exe.tls_keystores - Create Java keystores and truststores from TLS certificates.

v3.1.0
======

Expand Down
18 changes: 17 additions & 1 deletion changelogs/.plugin-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ objects:
description: Dynamic inventory
name: dynamic_inventory
version_added: 2.0.0
efm:
description: Install and configure Cloudera Edge Flow Manager (EFM)
name: efm
version_added: 3.2.0
freeipa_client:
description: Set up FreeIPA client
name: freeipa_client
Expand All @@ -64,6 +68,10 @@ objects:
description: Configure DNS zones and wildcard records for ECS
name: freeipa_server_ecs
version_added: 3.0.0
freeipa_server_enrolled_tls:
description: Issue a TLS certificate and private key for an enrolled host
name: freeipa_server_enrolled_tls
version_added: 3.2.0
freeipa_server_unenrolled_tls:
description: Issue a TLS certificate for an unenrolled host
name: freeipa_server_unenrolled_tls
Expand Down Expand Up @@ -93,6 +101,10 @@ objects:
description: Configuration init
name: init_deployment
version_added: 2.0.0
minifi_agent_cpp:
description: Install and configure Cloudera MiNiFi C++ Agent
name: minifi_agent_cpp
version_added: 3.2.0
mount:
description: Create and mount a storage volume
name: mount
Expand Down Expand Up @@ -451,6 +463,10 @@ objects:
description: Copy and install the signed TLS certificates to each cluster
name: tls_install_certs
version_added: 3.0.0
tls_keystores:
description: Create Java keystores and truststores from TLS certificates
name: tls_keystores
version_added: 3.2.0
tls_signing:
description: Sign of CSRs by a CA Server
name: tls_signing
Expand Down Expand Up @@ -507,4 +523,4 @@ plugins:
name: version
version_added: 3.0.0
vars: {}
version: 3.1.0
version: 3.2.0
26 changes: 26 additions & 0 deletions changelogs/changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
---
ancestor:
releases:
3.2.0:
changes:
minor_changes:
- Add ownership management for generated TLS certificate and key files (https://github.com/cloudera-labs/cloudera.exe/pull/310)
- Add role for MiNiFi C++ Agent (https://github.com/cloudera-labs/cloudera.exe/pull/309)
- Add tls_keystores role (https://github.com/cloudera-labs/cloudera.exe/pull/308)
- Add FreeIPA role for issuing TLS certificates to enrolled hosts (https://github.com/cloudera-labs/cloudera.exe/pull/307)
- Constrain OS-specific variables lookup to role var directory (https://github.com/cloudera-labs/cloudera.exe/pull/306)
- Add Docker network configuration for pgadmin (https://github.com/cloudera-labs/cloudera.exe/pull/304)
- Add Docker daemon configuration input docker role (https://github.com/cloudera-labs/cloudera.exe/pull/303)
- Add Cloudera Edge Flow Manager role (https://github.com/cloudera-labs/cloudera.exe/pull/295)
objects:
role:
- description: Install and configure Cloudera Edge Flow Manager (EFM).
name: efm
namespace:
- description: Issue a TLS certificate and private key for an enrolled host.
name: freeipa_server_enrolled_tls
namespace:
- description: Install and configure Cloudera MiNiFi C++ Agent.
name: minifi_agent_cpp
namespace:
- description: Create Java keystores and truststores from TLS certificates.
name: tls_keystores
namespace:
release_date: '2025-10-07'
3.1.0:
changes:
minor_changes:
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

namespace: cloudera
name: exe
version: 3.1.0
version: 3.2.0
readme: README.md
authors:
- Jim Enright @jenright
Expand Down
2 changes: 1 addition & 1 deletion roles/freeipa_server_enrolled_tls/meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ argument_specs:
- Issue a TLS certificate and private key for a host that is already enrolled in FreeIPA.
- The certificate is requested from FreeIPA CA using the enrolled host's identity.
author: Cloudera Labs
version_added: 3.1.0
version_added: 3.2.0
options:
ipaadmin_password:
description: FreeIPA admin password used for authentication.
Expand Down
Loading