Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default value of use_ssd argument in CDE module #156

Merged
merged 2 commits into from
Jun 26, 2024
Merged
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
33 changes: 17 additions & 16 deletions plugins/modules/de.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,22 @@
required: False
maximum_instances:
description:
- Maximum Instances for the CDE Service
- Maximum Instances for the CDE Service
type: int
required: False
minimum_spot_instances:
description:
- Minimum Spot Instances for the CDE Service
- Minimum Spot Instances for the CDE Service
type: int
required: False
maximum_spot_instances:
description:
- Maximum Spot Instances for the CDE Service
- Maximum Spot Instances for the CDE Service
type: int
required: False
chart_value_overrides:
description:
- Chart overrides for enabling a service
- Chart overrides for enabling a service
type: list
elements: dict
required: False
Expand All @@ -88,48 +88,48 @@
required: False
enable_public_endpoint:
description:
- Creates a CDE endpoint (Load Balancer) in a publicly accessible subnet
- Creates a CDE endpoint (Load Balancer) in a publicly accessible subnet
type: bool
required: False
enable_private_network:
description:
- Create a fully private CDE instance
- Create a fully private CDE instance
type: bool
required: False
loadbalancer_ips:
description:
- List of CIDRs allowed to access the load balancer.
- List of CIDRs allowed to access the load balancer.
type: list
elements: str
required: False
enable_workload_analytics:
description:
- If set false, diagnostic information about job and query execution is sent to Cloudera Workload Manager
- If set false, diagnostic information about job and query execution is sent to Cloudera Workload Manager
type: bool
required: False
initial_instances:
description:
- Initial Instances when the service is enabled
- Initial Instances when the service is enabled
type: int
required: False
initial_spot_instances:
description:
- Initial spot Instances when the service is enabled
- Initial spot Instances when the service is enabled
type: int
required: False
root_volume_size:
description:
- EBS volume size in GB
- EBS volume size in GB
type: int
required: False
skip_validation:
description:
- Skip Validation check.
- Skip Validation check.
type: bool
required: False
tags:
description:
- User defined labels that tag all provisioned cloud resources
- User defined labels that tag all provisioned cloud resources
type: dict
required: False
suboptions:
Expand All @@ -140,12 +140,12 @@
required: False
use_ssd:
description:
- Instance local storage (SSD) would be used for the workload filesystem (Example - spark local directory). Currently supported only for aws services
- Instance local storage (SSD) would be used for the workload filesystem (Example - spark local directory). Currently supported only for aws services
type: bool
required: False
whitelist_ips:
description:
- List of CIDRs that would be allowed to access Kubernetes master API server
- List of CIDRs that would be allowed to access Kubernetes master API server
type: list
elements: str
required: False
Expand Down Expand Up @@ -248,6 +248,7 @@
elements: complex
contains:
ChartValueOverridesResponse:
description: Response object containing chart value overrides.
type: list
returned: always
contains:
Expand Down Expand Up @@ -517,7 +518,7 @@ def main():
root_volume_size=dict(required=False, type='int', default=100),
skip_validation=dict(required=False, type='bool', default=False),
tags=dict(required=False, type='dict', default=None),
use_ssd=dict(required=False, type='bool', default=True),
use_ssd=dict(required=False, type='bool', default=None),
whitelist_ips=dict(required=False, type='list', elements='str', default=None),
force=dict(required=False, type='bool', default=False, aliases=['force_delete']),
state=dict(required=False, type='str', choices=['present', 'absent'], default='present'),
Expand Down
Loading