cloudera.cluster.role_config_group module – Manage a cluster service role config group.
Note
This module is part of the cloudera.cluster collection (version 5.0.0).
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install cloudera.cluster
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: cloudera.cluster.role_config_group
.
New in cloudera.cluster 4.4.0
Synopsis
Manage a cluster service role config group.
Aliases: service_role_config_group
Requirements
The below requirements are needed on the host that executes this module.
cm-client
Parameters
Parameter |
Comments |
---|---|
Set the HTTP user agent header when interacting with the CM API endpoint. Default: |
|
The associated cluster. |
|
The role config group configuration to set. To unset a parameter, use |
|
Capture the HTTP interaction logs with the CM API endpoint. Choices:
|
|
The display name for this role config group in the Cloudera Manager UI. |
|
Flag to force TLS during CM API endpoint discovery. If Choices:
|
|
Hostname of the CM API endpoint. If set, the Mutually exclusive with url. |
|
Message to log for any changes to the entity. Default: |
|
A role config group to manage. If not defined, the module will target the base role config group associated with the |
|
Password for access to the CM API endpoint. This parameter is set to |
|
Port of the CM API endpoint. If set, CM API endpoint discovery will connect to the designated port first and will follow redirects. Default: |
|
Set the HTTP/S proxy server when interacting with the CM API endpoint. |
|
Whether to reset configuration parameters to only the declared entries. Choices:
|
|
The role type defining the role config group. To change the role_type of an existing role config group, you must explicitly delete and recreate the role config group. |
|
The associated service. |
|
Flag indicating if the declared configuration parameters and tags should skipped REDACTED parameters during reconciliation. If set, the module will not attempt to update any existing parameter with a REDACTED value. Otherwise, the parameter value will be overridden. Choices:
|
|
Path to SSL CA certificate to use for validation. |
|
The presence or absence of the role config group. If any roles are associated with role config group, you are not able to delete the group. NOTE: you cannot remove a Choices:
|
|
The CM API endpoint URL and should include scheme, host, port, and API root path. Mutually exclusive with host. |
|
Username for access to the CM API endpoint. |
|
Verify the TLS certificates for the CM API endpoint. Choices:
|
|
API version of the CM API endpoint. Default: |
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full |
Can run in check_mode and return changed status prediction without modifying target, if not supported the action will be skipped. |
|
Support: full |
Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode |
|
Platforms: all |
Target OS/families that can be operated against |
See Also
See also
- cloudera.cluster.role_config_group_info
Retrieve information about a cluster service role config group or groups.
Examples
- name: Create or update a role config group
cloudera.cluster.role_config_group:
host: example.cloudera.com
username: "jane_smith"
password: "S&peR4Ec*re"
cluster: example-cluster
service: ZooKeeper
name: Example-ZK-Server
type: SERVER
config:
tickTime: 2500
- name: Create or update a role config group, purging undeclared parameters
cloudera.cluster.role_config_group:
host: example.cloudera.com
username: "jane_smith"
password: "S&peR4Ec*re"
cluster: example-cluster
service: ZooKeeper
name: Example-ZK-Server
type: SERVER
config:
another_parameter: 12345
purge: true
- name: Update the base role config group for a role type
cloudera.cluster.role_config_group:
host: example.cloudera.com
username: "jane_smith"
password: "S&peR4Ec*re"
cluster: example-cluster
service: ZooKeeper
# name: Leave blank to target the base role config group
type: SERVER
config:
tickTime: 3500
- name: Reset the configuration of a role config group
cloudera.cluster.role_config_group:
host: example.cloudera.com
username: "jane_smith"
password: "S&peR4Ec*re"
cluster: example-cluster
service: ZooKeeper
name: Example-ZK-Server
type: SERVER
purge: true
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
A service role config group. Returned: always |
|
Flag indicating whether this is a base group. Returned: always |
|
The cluster name associated with the service of the role config group. Returned: always |
|
Set of configurations for the role config group. Returned: when supported |
|
A user-friendly name of the role config group, as would have been shown in the web UI. Returned: when supported |
|
The unique name of this role config group. Returned: always |
|
List of role names associated with this role config group. Returned: when supported |
|
The type of the roles in this group. Returned: always |
|
The service name associated with this role config group. Returned: always |