From 3221f801bb6cfa12853d297fa60e24d6bcc9b72c Mon Sep 17 00:00:00 2001 From: system Date: Mon, 13 Oct 2025 09:07:16 +0000 Subject: [PATCH] Update values for demo01-kafka1 --- demo01-kafka1/values.yaml | 61 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 demo01-kafka1/values.yaml diff --git a/demo01-kafka1/values.yaml b/demo01-kafka1/values.yaml new file mode 100644 index 0000000..9656728 --- /dev/null +++ b/demo01-kafka1/values.yaml @@ -0,0 +1,61 @@ +#version: kafka, 1.0.0 +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaUser +metadata: + name: "service-account-service-kafka-cluster-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-table1" + namespace: kafka-cluster +spec: + partitions: 1 + replicas: 3 + topicName: "demo01.public.table1" + config: + cleanup.policy: compact + retention.ms: 604800000 + segment.bytes: 1073741824 + +--- +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaTopic +metadata: + labels: + strimzi.io/cluster: kafka-cluster + name: "public-table2" + namespace: kafka-cluster +spec: + partitions: 1 + replicas: 3 + topicName: "demo01.public.table2" + config: + cleanup.policy: compact + retention.ms: 604800000 + segment.bytes: 1073741824