Skip to content

Commit

Permalink
clean ups
Browse files Browse the repository at this point in the history
  • Loading branch information
raminqaf committed Dec 12, 2024
1 parent 1fafdfd commit de3b230
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
1 change: 0 additions & 1 deletion word-count/code/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ plugins {
id("com.google.cloud.tools.jib") version "3.4.4"
}


group = "com.bakdata.kpops.examples"

repositories {
Expand Down
7 changes: 3 additions & 4 deletions word-count/deployment/values-dataproducer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ nameOverride: word-count-data-producer
replicaCount: 1

image: bakdata/kpops-demo-sentence-producer
imageTag: 1.0.0
imageTag: 2.0.0
imagePullPolicy: Always
streams:
brokers: "k8kafka-cp-kafka-headless:9092"
kafka:
bootstrapServers: "k8kafka-cp-kafka-headless:9092"
outputTopic: word-count-raw-data-producer-topic
prometheus:
jmx:
enabled: false

debug: true
9 changes: 3 additions & 6 deletions word-count/deployment/values-wordcounter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,17 @@ nameOverride: word-count-wordcounter
replicaCount: 1

image: bakdata/kpops-demo-word-count-app
imageTag: 1.0.0
imageTag: 2.0.0
imagePullPolicy: Always

streams:
brokers: "k8kafka-cp-kafka-headless:9092"
kafka:
bootstrapServers: "k8kafka-cp-kafka-headless:9092"
inputTopics: word-count-raw-data-producer-topic
outputTopic: word-count-countedwords-topic
productive: false

annotations:
consumerGroup: "word-counter-group"

prometheus:
jmx:
enabled: false

debug: true

0 comments on commit de3b230

Please sign in to comment.