Skip to content

Commit 6ad8afc

Browse files
authored
Update Runtime parcels URL and Cloudera Manager version (#57)
* Update CM and CDH parcels version for basic cluster * Add futures Python module to Utility VM Signed-off-by: Jim Enright <[email protected]>
1 parent 8c884aa commit 6ad8afc

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

roles/cloudera_deploy/defaults/basic_cluster.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
cloudera_manager_version: 7.1.4
17+
cloudera_manager_version: 7.4.4
1818

1919
clusters:
2020
- name: Basic Cluster
2121
services: [HDFS, YARN, ZOOKEEPER]
2222
repositories:
23-
- https://archive.cloudera.com/cdh7/7.1.4.0/parcels/
23+
- https://archive.cloudera.com/cdh7/7.1.7.0/parcels/
2424
configs:
2525
HDFS:
2626
DATANODE:

roles/cloudera_deploy/tasks/populate_download_mirror.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,12 @@
8181
- name: Prepare host for s3 actions
8282
become: yes
8383
ansible.builtin.pip:
84-
name: boto3 >= 1.4.4
84+
name: "{{ __pip_item }}"
85+
loop_control:
86+
loop_var: __pip_item
87+
loop:
88+
- futures
89+
- boto3 >= 1.4.4
8590

8691
- name: Sync downloaded Files paths to S3 cache bucket
8792
become: yes

0 commit comments

Comments
 (0)