Skip to content

Commit f12bb80

Browse files
committed
Fix pre-commit errors
Signed-off-by: Webster Mudge <[email protected]>
1 parent 9c25e23 commit f12bb80

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
22
OZONE:
33
SERVICEWIDE:
4-
hdds.grpc.tls.enabled: true
4+
hdds.grpc.tls.enabled: true

roles/config/cluster/base/vars/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ custom_config_templates:
6969
- template: configs/tls-7.3.1.j2
7070
condition: "{{ cluster.security.tls | default(False) and cloudera_manager_version is version('7.3.1', '>=') }}"
7171
- 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','>=') }}"
7373
# Custom configurations for Cloudera Streams Processing components on CDH 6.x
7474
- template: configs/schemaregistry.j2
7575
condition: >-

roles/config/cluster/ecs/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
- set_fact:
2020
# databases: "{{ database_defaults | combine(cluster.databases | default({}), recursive=True) }}"
2121
databases: []
22-
22+
2323
- name: Retrieve repository metadata
2424
include_role:
2525
name: cloudera.cluster.deployment.repometa

roles/deployment/definition/defaults/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ default_database_versions:
3131
'9': 10.6
3232
mysql:
3333
'7': 5.7
34-
'8': 8.0
35-
'9': 8.0
34+
'8': 8.0
35+
'9': 8.0
3636

3737
# Located in cloudera.cluster.infrastructure.krb5_common
3838
#krb5_realm: CLOUDERA.LOCAL

roles/prereqs/os/vars/RedHat-7.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v# Copyright 2024 Cloudera, Inc. All Rights Reserved.
1+
# Copyright 2024 Cloudera, Inc. All Rights Reserved.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -21,4 +21,4 @@ ntp_package: ntp
2121
ntp_service: ntpd
2222
rngd_package: rng-tools
2323
rngd_service: rngd
24-
needs_python2: True
24+
needs_python2: True

roles/prereqs/os/vars/RedHat-8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ ntp_package: ntp
2121
ntp_service: ntpd
2222
rngd_package: rng-tools
2323
rngd_service: rngd
24-
needs_python2: True
24+
needs_python2: True

roles/prereqs/os/vars/RedHat-9.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ ntp_package: ntp
2121
ntp_service: ntpd
2222
rngd_package: rng-tools
2323
rngd_service: rngd
24-
needs_python2: False
24+
needs_python2: False

roles/prereqs/pvc_ecs/tasks/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@
4343
state: present
4444

4545
- name: Setup iptables for rhel8
46-
when:
46+
when:
4747
- ansible_distribution_major_version | int == 8
4848
block:
4949
- name: Install iptables for rhel8, using rpm option tsflags=noscripts
5050
ansible.builtin.command: dnf install -y iptables --setopt=tsflags=noscripts
5151

5252
- name: Setup deprecated iptables for rhel9
53-
when:
53+
when:
5454
- ansible_distribution_major_version | int >= 9
5555
block:
5656
- name: Install iptables for rhel9, using rpm option tsflags=noscripts
5757
ansible.builtin.command: dnf install -y iptables --setopt=tsflags=noscripts
5858

5959
- name: Check for existence of lnk /usr/sbin/iptables-nft
60-
ansible.builtin.stat:
60+
ansible.builtin.stat:
6161
path: /usr/sbin/iptables-nft
6262
register: iptables_nft
6363

@@ -84,7 +84,7 @@
8484
state: link
8585
follow: false
8686
when: iptables_nft.stat.islnk
87-
87+
8888
- name: Flush iptables
8989
ansible.builtin.iptables:
9090
flush: yes
@@ -107,10 +107,10 @@
107107
group: root
108108
mode: 0644
109109
when: ansible_facts.services["NetworkManager.service"]['status'] != "not-found"
110-
110+
111111
- name: Reload NetworkManager daemon
112112
ansible.builtin.service:
113113
state: restarted
114114
daemon_reload: true
115-
name: NetworkManager.service
115+
name: NetworkManager.service
116116
when: ansible_facts.services["NetworkManager.service"]['status'] != "not-found"

0 commit comments

Comments
 (0)