Skip to content

Commit

Permalink
[RHPAM-3640] Configure Kafka JBPM Emitter from Operator -7.11.x (#550)
Browse files Browse the repository at this point in the history
* RHPAM-3640 Configure Kafka JBPM Emitter from Operator

Signed-off-by: desmax74 <[email protected]>
  • Loading branch information
desmax74 authored Jul 1, 2021
1 parent 87ff564 commit daf2718
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions kieserver/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit daf2718

Please sign in to comment.