forked from confluentinc/cp-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall.yml
78 lines (71 loc) · 1.64 KB
/
all.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
- name: Host Prerequisites
hosts: zookeeper:kafka_broker:schema_registry:kafka_connect:ksql:control_center:kafka_rest
tasks:
- import_role:
name: confluent.variables_handlers
- import_role:
name: confluent.common
- import_role:
name: confluent.kerberos
when: "'GSSAPI' in kafka_broker_sasl_enabled_mechanisms and kerberos_configure|bool"
- name: Create Certificate Authority and Copy to Ansible Host
include_tasks: tasks/certificate_authority.yml
run_once: true
when: self_signed|bool and regenerate_ca|bool
- name: Zookeeper Provisioning
hosts: zookeeper
gather_facts: no
tags:
- zookeeper
tasks:
- import_role:
name: confluent.zookeeper
- name: Kafka Broker Provisioning
hosts: kafka_broker
gather_facts: no
tags:
- kafka_broker
tasks:
- import_role:
name: confluent.kafka_broker
- name: Schema Registry Provisioning
hosts: schema_registry
gather_facts: no
tags:
- schema_registry
tasks:
- import_role:
name: confluent.schema_registry
- name: Kafta Connect Provisioning
hosts: kafka_connect
gather_facts: no
tags:
- kafka_connect
tasks:
- import_role:
name: confluent.kafka_connect
- name: KSQL Provisioning
hosts: ksql
gather_facts: no
tags:
- ksql
tasks:
- import_role:
name: confluent.ksql
- name: Kafka Rest Provisioning
hosts: kafka_rest
gather_facts: no
tags:
- kafka_rest
tasks:
- import_role:
name: confluent.kafka_rest
- name: Control Center Provisioning
hosts: control_center
gather_facts: no
tags:
- control_center
tasks:
- import_role:
name: confluent.control_center