diff --git a/kieserver/image.yaml b/kieserver/image.yaml index 52dc73ad..874dbbe3 100644 --- a/kieserver/image.yaml +++ b/kieserver/image.yaml @@ -230,6 +230,33 @@ envs: - name: "KIE_SERVER_KAFKA_EXT_MAX_BLOCK_MS" example: "6000" description: "Value in milliseconds that indicates how long the 'publish' method will block the operation. Default 2000 milliseconds (2 seconds), this environment variable will be used to set the org.kie.server.jbpm-kafka.ext.max.block.ms system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_ENABLED" + example: "true" + description: "If true, will configure the jBPM Kafka events integration, when true the kafka bootstrap servers must be set." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_ACKS" + example: "3" + description: "The number of acknowledgments that the emitter requires the leader to have received before considering a request to be complete, not set by default. This environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.acks' system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_BOOTSTRAP_SERVERS" + example: "localhost:9092" + description: "Comma separated list of host/port pairs to use for establishing the initial connection to the Kafka cluster, this environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.bootstrap.servers' system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_CLIENT_ID" + example: "client.id" + description: "This configuration allows users to set an ID to provide a logical application name for logging purposes, not set by default.This environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.client.id' system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_MAX_BLOCK_MS" + example: "2000" + description: "Value in milliseconds that indicates how long the 'publish' method will block the operation. Default 2000 milliseconds (2 seconds), this environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.max.block.ms' system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_DATE_FORMAT" + example: "yyyy-MM-dd'T'HH:mm:ss.SSSZ" + description: "Date and time format to be sent to Kafka. Default format is yyyy-MM-dd'T'HH:mm:ss.SSSZ, this environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.date_format' system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_PROCESSES_TOPIC_NAME" + example: "my-processes-topic" + description: "Custom Processes topic's name, default value is jbpm-processes-events, this environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.topic.processes' system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_TASKS_TOPIC_NAME" + example: "my-tasks-topic" + description: "Custom Processes task's name, default value is jbpm-tasks-events, this environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.topic.tasks' system property." + - name: "KIE_SERVER_KAFKA_JBPM_EVENT_EMITTER_CASES_TOPIC_NAME" + example: "my-cases-topic" + description: "Custom Processes cases's name, default value is jbpm-cases-events, this environment variable will be used to set the 'org.kie.jbpm.event.emitters.kafka.topic.cases' system property." ports: - value: 8080 - value: 8443