Skip to content

Commit 491eaae

Browse files
authored
[CYB-193][UI][PARCEL][CSD] Landing page for pipelines. (#82)
1 parent 71cf8d1 commit 491eaae

File tree

6 files changed

+590
-50
lines changed

6 files changed

+590
-50
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
server.servlet.context-path=/
2+
server.tomcat.accesslog.enabled=true
3+
server.port={{ globals['server.port'] }}
4+
config.path={{ globals['config.path'] }}
5+
pipelines.path={{ globals['server.pipelineDir'] }}
6+
springdoc.api-doc.path=/api-docs
7+
springdoc.swagger-ui.path=/swagger-ui
8+
spring.profiles.active=kafka
9+
logging.config={{ globals['logging_config'] }}
10+
11+
{% for obj in globals['clusters_kafka_map'] | fromjson %}
12+
13+
spring.kafka.external-clusters.{{ obj['name'] }}.bootstrap-servers={{obj['bootstrap']}}
14+
spring.kafka.external-clusters.{{ obj['name'] }}.reply-topic={{ globals['spring.kafka.replyTopic'] }}
15+
spring.kafka.external-clusters.{{ obj['name'] }}.request-topic={{ globals['spring.kafka.requestTopic'] }}
16+
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.group-id={{ globals['server.group.id'] }}
17+
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.enable-auto-commit={{ globals['spring.kafka.consumer.enable-auto-commit'] }}
18+
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.auto-offset-reset={{ globals['spring.kafka.consumer.auto-offset-reset'] }}
19+
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.key-deserializer={{ globals['spring.kafka.consumer.key-deserializer'] }}
20+
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.value-deserializer={{ globals['spring.kafka.consumer.value-deserializer'] }}
21+
spring.kafka.external-clusters.{{ obj['name'] }}.producer.key-serializer={{ globals['spring.kafka.producer.key-deserialize'] }}
22+
spring.kafka.external-clusters.{{ obj['name'] }}.producer.value-serializer={{ globals['spring.kafka.producer.value-serializer'] }}
23+
{% endfor %}

0 commit comments

Comments
 (0)