From 002e1211a8e11f472d7accec18c8a852c41b6eb7 Mon Sep 17 00:00:00 2001 From: system Date: Wed, 12 Nov 2025 03:14:15 +0000 Subject: [PATCH] Update values for demo01-kafka2 --- demo01-kafka2/values.yaml | 78 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 demo01-kafka2/values.yaml diff --git a/demo01-kafka2/values.yaml b/demo01-kafka2/values.yaml new file mode 100644 index 0000000..e1b464b --- /dev/null +++ b/demo01-kafka2/values.yaml @@ -0,0 +1,78 @@ +#version: kafka, 1.0.0 +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaUser +metadata: + name: "service-account-service-demo01-kafka-common" + labels: + strimzi.io/cluster: kafka-cluster +spec: + authorization: + type: simple + acls: + - resource: + type: topic + name: "demo01." + patternType: prefix + operations: + - Read + - Describe + - DescribeConfigs + - Write + - resource: + type: group + name: "demo01-" + patternType: prefix + operations: + - Read + - Write + - Describe +--- +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaTopic +metadata: + labels: + strimzi.io/cluster: kafka-cluster + name: "public-subway-info-copy" + namespace: kafka-cluster +spec: + partitions: 6 + replicas: 3 + topicName: "demo01.public.subway_info_copy" + config: + cleanup.policy: compact + retention.bytes: "1073741824" + segment.bytes: "268435456" + +--- +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaTopic +metadata: + labels: + strimzi.io/cluster: kafka-cluster + name: "public-subway-passengers-copy" + namespace: kafka-cluster +spec: + partitions: 6 + replicas: 3 + topicName: "demo01.public.subway_passengers_copy" + config: + cleanup.policy: compact + retention.bytes: "1073741824" + segment.bytes: "268435456" + +--- +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaTopic +metadata: + labels: + strimzi.io/cluster: kafka-cluster + name: "public-subway-passengers-time-copy" + namespace: kafka-cluster +spec: + partitions: 6 + replicas: 3 + topicName: "demo01.public.subway_passengers_time_copy" + config: + cleanup.policy: compact + retention.bytes: "1073741824" + segment.bytes: "268435456"