From 1eeb0943e1e216b2cb8d96b3216e9293ade0ba89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20L=C3=BCdin?= Date: Thu, 22 Feb 2024 16:45:50 +0100 Subject: [PATCH] feat: add configuration of Kafka consumer groups via environment variable --- docker/config/executor.yaml | 2 +- docker/config/slack_action.yaml | 2 +- docker/config/teams_action.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/config/executor.yaml b/docker/config/executor.yaml index 722def3b..2ad6d56e 100644 --- a/docker/config/executor.yaml +++ b/docker/config/executor.yaml @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -name: "ingestion_executor" +name: ${DATAHUB_ACTIONS_INGESTION_EXECUTOR_CONSUMER_GROUP_ID:-ingestion_executor} source: type: "kafka" config: diff --git a/docker/config/slack_action.yaml b/docker/config/slack_action.yaml index 7dd1a0d0..48491c00 100644 --- a/docker/config/slack_action.yaml +++ b/docker/config/slack_action.yaml @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -name: datahub_slack_action +name: ${DATAHUB_ACTIONS_SLACK_CONSUMER_GROUP_ID:-datahub_slack_action} enabled: ${DATAHUB_ACTIONS_SLACK_ENABLED:-false} source: type: "kafka" diff --git a/docker/config/teams_action.yaml b/docker/config/teams_action.yaml index 70f0f679..6ab3befb 100644 --- a/docker/config/teams_action.yaml +++ b/docker/config/teams_action.yaml @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -name: datahub_teams_action +name: ${DATAHUB_ACTIONS_TEAMS_CONSUMER_GROUP_ID:-datahub_teams_action} enabled: ${DATAHUB_ACTIONS_TEAMS_ENABLED:-false} source: type: "kafka"