Skip to content

Commit

Permalink
Kafka: use specification to set directory permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
cicharka committed Mar 4, 2022
1 parent 74a2615 commit 13f1487
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
file:
path: "{{ kafka_install_dir }}"
state: directory
owner: kafka
group: kafka
owner: "{{ specification.user }}"
group: "{{ specification.group }}"
2 changes: 1 addition & 1 deletion cli/src/ansible/AnsibleVarsGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def generate(self):
# is changed between versions (e.g. wal_keep_segments -> wal_keep_size) and sometimes previous parameters
# are not compatible with the new ones, defaults are used for template processing
roles_with_defaults = [
'grafana', 'haproxy', 'image_registry', 'jmx_exporter', 'kafka_exporter',
'grafana', 'haproxy', 'image_registry', 'jmx_exporter', 'kafka', 'kafka_exporter',
'kibana', 'logging', 'node_exporter', 'postgres_exporter',
'postgresql', 'prometheus', 'rabbitmq', 'repository'
]
Expand Down
1 change: 1 addition & 0 deletions docs/home/howto/UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ Kafka will be automatically updated to the latest version supported by Epiphany.
version [here](../COMPONENTS.md#epiphany-cluster-components). Kafka brokers are updated one by one - but the update
procedure does not guarantee "zero downtime" because it depends on the number of available brokers, topics, and
partitioning configuration.
Note that old Kafka binaries are removed during upgrade.

### ZooKeeper upgrade

Expand Down

0 comments on commit 13f1487

Please sign in to comment.