Skip to content

Commit

Permalink
Merge pull request #287 from mbaldessari/wip-next-gen-mirrormaker
Browse files Browse the repository at this point in the history
Fix kafka-to-s3 mirroring from factory
  • Loading branch information
darkdoc authored Oct 29, 2024
2 parents 063a3f3 + e42416b commit 2b3fb5b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/datacenter/manuela-data-lake/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ kafka:
broker:
uri: "prod-kafka-cluster-kafka-bootstrap.manuela-data-lake.svc:9092"
topic:
temperature: "manuela-factory.iot-sensor-sw-temperature"
vibration: "manuela-factory.iot-sensor-sw-vibration"
temperature: "factory-kafka-cluster.manuela-factory.iot-sensor-sw-temperature"
vibration: "factory-kafka-cluster.manuela-factory.iot-sensor-sw-vibration"

secretStore:
name: vault-backend
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ data:
SENSOR_LIGHT_MINRANGE: "0"
SENSOR_LIGHT_START: "0"

SENSOR_TEMPERATURE_ENABLED: "false"
SENSOR_TEMPERATURE_ENABLED: "true"
SENSOR_TEMPERATURE_FREQUENCY: "5"
SENSOR_TEMPERATURE_MAXITERATION: "1"
SENSOR_TEMPERATURE_MAXRANGE: "55"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ data:
SENSOR_LIGHT_MINRANGE: "0"
SENSOR_LIGHT_START: "0"

SENSOR_TEMPERATURE_ENABLED: "false"
SENSOR_TEMPERATURE_ENABLED: "true"
SENSOR_TEMPERATURE_FREQUENCY: "5"
SENSOR_TEMPERATURE_MAXITERATION: "1"
SENSOR_TEMPERATURE_MAXRANGE: "55"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: kafka.strimzi.io/v1beta1
kind: KafkaTopic
metadata:
name: iot-sensor-sw-temperature
name: {{ .Values.kafka.broker.topic.temperature }}
namespace: manuela-stormshift-messaging
labels:
strimzi.io/cluster: factory-kafka-cluster
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: kafka.strimzi.io/v1beta1
kind: KafkaTopic
metadata:
name: iot-sensor-sw-vibration
name: {{ .Values.kafka.broker.topic.vibration }}
namespace: manuela-stormshift-messaging
labels:
strimzi.io/cluster: factory-kafka-cluster
Expand Down

0 comments on commit 2b3fb5b

Please sign in to comment.