Skip to content

Commit a3f45de

Browse files
authored
Merge pull request #43 from cloudera/feature/Adopt_CLIchange
Fixed CDW issue caused by new CLI version
2 parents bf30c78 + d7dc959 commit a3f45de

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

ClouderaSetup/OnCloud/AWS/build/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.3.1] - 2025-01-03
9+
10+
### Changed
11+
- Updated the CDW service parameters as per new CDPCLI version
12+
13+
### Fixed
14+
- Fixed CDW service deployment failure due to parameter changes in new CDPCLI version
15+
816
## [2.3.0] - 2024-12-30
917

1018
### Added

ClouderaSetup/OnCloud/AWS/build/cdp-wrkshps-quickstarts/cdp-data-services/enable-cdw.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
--dbc-id "{{ dbcatalogstatus['database_catalogs'][0]['id'] }}" \
8686
--vw-type "hive" \
8787
--name "{{ workshop_name }}-hive-{{ item }}" \
88-
--template "{{ vw_size }}" \
88+
--t-shirt-size "{{ vw_size }}" \
8989
--autoscaling disableAutoSuspend="true"
9090
with_sequence: start=1 end="{{ number_vw_to_create | default(1) }}"
9191
#loop: "{{ range(1, number_vw_to_create | default(1) + 1) | list }}"
@@ -117,7 +117,7 @@
117117
--dbc-id "{{ dbcatalogstatus['database_catalogs'][0]['id'] }}" \
118118
--vw-type "impala" \
119119
--name "{{ workshop_name }}-impala-{{ item }}" \
120-
--template "{{ vw_size }}" \
120+
--t-shirt-size "{{ vw_size }}" \
121121
--impala-ha-settings highAvailabilityMode="DISABLED" \
122122
--autoscaling disableAutoSuspend="true"
123123
with_sequence: start=1 end="{{ number_vw_to_create | default(1) }}"
@@ -147,7 +147,7 @@
147147
cdp dw create-data-visualization \
148148
--cluster-id "{{ dwcluster['cluster']['id'] }}" \
149149
--name "{{ workshop_name }}-data-viz" \
150-
--template-name "{{ cdvc_size }}" \
150+
--resource-template "{{ cdvc_size }}" \
151151
--config adminGroups="{{ workshop_name }}-aw-cdp-user-group"
152152
when: not data_viz_exists
153153
ignore_errors: true

0 commit comments

Comments
 (0)