You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+66-31Lines changed: 66 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ The format is quite evident. Just few remarks:
65
65
* The parameter *state=absent* can be used for deleting topics and ACLs if they present. Any value other than *absent* is considered as *present*
66
66
* The *patternType=MATCH*, *patternType=ANY*, *operation=ANY*, *principal=** can be used when *state=absent* for deleting ACLs but be careful with that
67
67
* The ACL operation is described as *OperationType:Host*
68
-
* The Host part can be omitted and will be considered as '*' when *state=present* and as any host (including '*' itself and any separately defined IP) when *state=absent*
68
+
* The Host part can be omitted and will be considered as '*' when *state=present* and as any host (including '*' itself and any separately defined IP) when *state=absent*
69
69
70
70
kafka-cluster-example2.json:
71
71
```json
@@ -182,42 +182,77 @@ Kafka-Ops can also export the current topics and ACLs from the cluster. This can
182
182
Note that if no broker is defined then Kafka-Ops tries to connect to *localhost:9092*.
183
183
184
184
185
+
## Templating
186
+
187
+
Kafka-Ops supports the simple templating for Spec-file. For now the variables are only read from environment variables and from command-line arguments.
188
+
189
+
Templating can be useful for multi-tenant and multi-environment Kafka clusters.
0 commit comments