Skip to content

Commit

Permalink
[CYB-193][UI][PARCEL][CSD] Landing page for pipelines. (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpavlenko-cv authored Nov 4, 2024
1 parent 71cf8d1 commit 491eaae
Show file tree
Hide file tree
Showing 6 changed files with 590 additions and 50 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
server.servlet.context-path=/
server.tomcat.accesslog.enabled=true
server.port={{ globals['server.port'] }}
config.path={{ globals['config.path'] }}
pipelines.path={{ globals['server.pipelineDir'] }}
springdoc.api-doc.path=/api-docs
springdoc.swagger-ui.path=/swagger-ui
spring.profiles.active=kafka
logging.config={{ globals['logging_config'] }}

{% for obj in globals['clusters_kafka_map'] | fromjson %}

spring.kafka.external-clusters.{{ obj['name'] }}.bootstrap-servers={{obj['bootstrap']}}
spring.kafka.external-clusters.{{ obj['name'] }}.reply-topic={{ globals['spring.kafka.replyTopic'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.request-topic={{ globals['spring.kafka.requestTopic'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.group-id={{ globals['server.group.id'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.enable-auto-commit={{ globals['spring.kafka.consumer.enable-auto-commit'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.auto-offset-reset={{ globals['spring.kafka.consumer.auto-offset-reset'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.key-deserializer={{ globals['spring.kafka.consumer.key-deserializer'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.consumer.value-deserializer={{ globals['spring.kafka.consumer.value-deserializer'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.producer.key-serializer={{ globals['spring.kafka.producer.key-deserialize'] }}
spring.kafka.external-clusters.{{ obj['name'] }}.producer.value-serializer={{ globals['spring.kafka.producer.value-serializer'] }}
{% endfor %}
Loading

0 comments on commit 491eaae

Please sign in to comment.