File tree Expand file tree Collapse file tree 8 files changed +15
-15
lines changed
deployment/definition/defaults Expand file tree Collapse file tree 8 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
OZONE:
3
3
SERVICEWIDE:
4
- hdds.grpc.tls.enabled: true
4
+ hdds.grpc.tls.enabled: true
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ custom_config_templates:
69
69
- template : configs/tls-7.3.1.j2
70
70
condition : " {{ cluster.security.tls | default(False) and cloudera_manager_version is version('7.3.1', '>=') }}"
71
71
- template : configs/tls-cm-7.j2
72
- condition : " {{ cluster.security.tls | default(False) and cloudera_manager_version is version('7.1.0','>=') }}"
72
+ condition : " {{ cluster.security.tls | default(False) and cloudera_manager_version is version('7.1.0','>=') }}"
73
73
# Custom configurations for Cloudera Streams Processing components on CDH 6.x
74
74
- template : configs/schemaregistry.j2
75
75
condition : >-
Original file line number Diff line number Diff line change 19
19
- set_fact :
20
20
# databases: "{{ database_defaults | combine(cluster.databases | default({}), recursive=True) }}"
21
21
databases : []
22
-
22
+
23
23
- name : Retrieve repository metadata
24
24
include_role :
25
25
name : cloudera.cluster.deployment.repometa
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ default_database_versions:
31
31
' 9 ' : 10.6
32
32
mysql :
33
33
' 7 ' : 5.7
34
- ' 8 ' : 8.0
35
- ' 9 ' : 8.0
34
+ ' 8 ' : 8.0
35
+ ' 9 ' : 8.0
36
36
37
37
# Located in cloudera.cluster.infrastructure.krb5_common
38
38
# krb5_realm: CLOUDERA.LOCAL
Original file line number Diff line number Diff line change 1
- v # Copyright 2024 Cloudera, Inc. All Rights Reserved.
1
+ # Copyright 2024 Cloudera, Inc. All Rights Reserved.
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
@@ -21,4 +21,4 @@ ntp_package: ntp
21
21
ntp_service : ntpd
22
22
rngd_package : rng-tools
23
23
rngd_service : rngd
24
- needs_python2 : True
24
+ needs_python2 : True
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ ntp_package: ntp
21
21
ntp_service : ntpd
22
22
rngd_package : rng-tools
23
23
rngd_service : rngd
24
- needs_python2 : True
24
+ needs_python2 : True
Original file line number Diff line number Diff line change @@ -21,4 +21,4 @@ ntp_package: ntp
21
21
ntp_service : ntpd
22
22
rngd_package : rng-tools
23
23
rngd_service : rngd
24
- needs_python2 : False
24
+ needs_python2 : False
Original file line number Diff line number Diff line change 43
43
state : present
44
44
45
45
- name : Setup iptables for rhel8
46
- when :
46
+ when :
47
47
- ansible_distribution_major_version | int == 8
48
48
block :
49
49
- name : Install iptables for rhel8, using rpm option tsflags=noscripts
50
50
ansible.builtin.command : dnf install -y iptables --setopt=tsflags=noscripts
51
51
52
52
- name : Setup deprecated iptables for rhel9
53
- when :
53
+ when :
54
54
- ansible_distribution_major_version | int >= 9
55
55
block :
56
56
- name : Install iptables for rhel9, using rpm option tsflags=noscripts
57
57
ansible.builtin.command : dnf install -y iptables --setopt=tsflags=noscripts
58
58
59
59
- name : Check for existence of lnk /usr/sbin/iptables-nft
60
- ansible.builtin.stat :
60
+ ansible.builtin.stat :
61
61
path : /usr/sbin/iptables-nft
62
62
register : iptables_nft
63
63
84
84
state : link
85
85
follow : false
86
86
when : iptables_nft.stat.islnk
87
-
87
+
88
88
- name : Flush iptables
89
89
ansible.builtin.iptables :
90
90
flush : yes
107
107
group : root
108
108
mode : 0644
109
109
when : ansible_facts.services["NetworkManager.service"]['status'] != "not-found"
110
-
110
+
111
111
- name : Reload NetworkManager daemon
112
112
ansible.builtin.service :
113
113
state : restarted
114
114
daemon_reload : true
115
- name : NetworkManager.service
115
+ name : NetworkManager.service
116
116
when : ansible_facts.services["NetworkManager.service"]['status'] != "not-found"
You can’t perform that action at this time.
0 commit comments