Skip to content

Commit fffe605

Browse files
committed
initial testing
1 parent 8ce3a11 commit fffe605

4 files changed

+17
-0
lines changed

jikkou/kafka-connectors-template.jinja

+4
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,7 @@ spec:
7070
{% if system.env.CONNECT_CREATE_MECDEPOSIT %}
7171
{{ create_connector(values.apps.mecdeposit) }}
7272
{% endif %}
73+
74+
{% if system.env.CONNECT_CREATE_OTHER %}
75+
{{ create_connector(values.apps.other) }}
76+
{% endif %}

jikkou/kafka-connectors-values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -370,3 +370,7 @@ apps:
370370
- topicName: topic.MecDepositMetrics
371371
collectionName: MecDepositMetrics
372372
generateTimestamp: true
373+
# Allow for custom connectors to be added - users can override this file and add other kafka connectors here
374+
other:
375+
name: other
376+
connectors:

jikkou/kafka-topics-template.jinja

+4
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,7 @@ spec:
7979
{% if system.env.KAFKA_TOPIC_CREATE_MECDEPOSIT %}
8080
{{ create_topics(values.apps.mecdeposit) }}
8181
{% endif %}
82+
83+
{% if system.env.KAFKA_TOPIC_CREATE_OTHER %}
84+
{{ create_topics(values.apps.other) }}
85+
{% endif %}

jikkou/kafka-topics-values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -197,3 +197,8 @@ apps:
197197
- topic.MecDepositMetrics
198198
tableTopics: {}
199199
customTopics: {}
200+
other:
201+
name: other-topics
202+
streamTopics: {}
203+
tableTopics: {}
204+
customTopics: {}

0 commit comments

Comments
 (0)