Skip to content

Commit 5c0973e

Browse files
committed
#5 remove hardcoded value of xfs type
1 parent 102d828 commit 5c0973e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

inventory/development/group_vars/all.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22

33
javaVersion: 8
4-
updateJava: false # only when you need to update java version
4+
updateJava: false # only when you need to update java version
55

66
useSystemFirewall: false
77

@@ -44,8 +44,8 @@ kafkaOldScalaVersion: 2.12
4444
kafkaDefaultReplicationFactor: 3
4545
kafkaMinInsyncReplicas: "{{ kafkaDefaultReplicationFactor | int - 1 }}"
4646
kafkaBackgroundThread: 10
47-
kafkaMessagesMaxBytes: 1000012 # 1MB approx
48-
kafkaReplicaFetchMaxBytes: 2000000 # this should be higher than kafkaMessagesMaxBytes
47+
kafkaMessagesMaxBytes: 1000012 # 1MB approx
48+
kafkaReplicaFetchMaxBytes: 2000000 # this should be higher than kafkaMessagesMaxBytes
4949
kafkaQuededMaxRequests: 500
5050
kafkaNumReplicaFetchers: 1
5151
kafkaNumNetworkThreads: 6
@@ -68,6 +68,6 @@ kafkaGroupInitRebalanceDelayMs: 3
6868

6969
# Only for AWS Based Cluster
7070
aws_kafka_ec2_region: "eu-central-1"
71-
aws_kafka_ebs_device: /dev/xvdc
72-
aws_kafka_ebs_device_fs: xfs
71+
aws_kafka_ebs_device: "/dev/xvdc"
72+
aws_kafka_ebs_device_fs: "xfs" # currently tested with xfs only.
7373
aws_kafka_ebs_device_mount_location: "{{ kafkaInstallDir }}"

roles/common/tasks/ebsDisk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
ansible.posix.mount:
2626
path: "{{ aws_kafka_ebs_device_mount_location }}"
2727
src: "{{ aws_kafka_ebs_device }}"
28-
fstype: xfs
28+
fstype: "{{ aws_kafka_ebs_device_fs }}"
2929
state: mounted

0 commit comments

Comments
 (0)