confluent based image
[dmaap/kafka11aaf.git] / src / main / docker / include / etc / confluent / docker / kafka.properties.template
1 {% set excluded_props = ['KAFKA_VERSION',
2                          'KAFKA_HEAP_OPTS'
3                          'KAFKA_LOG4J_OPTS',
4                          'KAFKA_OPTS',
5                          'KAFKA_JMX_OPTS',
6                          'KAFKA_JVM_PERFORMANCE_OPTS',
7                          'KAFKA_GC_LOG_OPTS',
8                          'KAFKA_LOG4J_ROOT_LOGLEVEL',
9                          'KAFKA_LOG4J_LOGGERS',
10                          'KAFKA_TOOLS_LOG4J_LOGLEVEL']
11 -%}
12 {% set kafka_props = env_to_props('KAFKA_', '', exclude=excluded_props) -%}
13 {% for name, value in kafka_props.iteritems() -%}
14 {{name}}={{value}}
15 {% endfor -%}
16
17 {% set confluent_support_props = env_to_props('CONFLUENT_SUPPORT_', 'confluent.support.') -%}
18 {% for name, value in confluent_support_props.iteritems() -%}
19 {{name}}={{value}}
20 {% endfor -%}