From ec90ad593d31f9d8838a5bd6fa26a625792dd149 Mon Sep 17 00:00:00 2001 From: system Date: Tue, 14 Oct 2025 05:00:43 +0000 Subject: [PATCH] Update values for demo01-kafka2 --- demo01-kafka2/values.yaml | 44 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 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..f5f3736 --- /dev/null +++ b/demo01-kafka2/values.yaml @@ -0,0 +1,44 @@ +#version: kafka, 1.0.0 +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaUser +metadata: + name: "service-account-service-demo01-kafka2" + 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