From 21b03c3349c0ce06f918af127285b72948fd45fb Mon Sep 17 00:00:00 2001 From: system Date: Tue, 14 Oct 2025 05:33:21 +0000 Subject: [PATCH] Update values for demo01-kafka7 --- demo01-kafka7/values.yaml | 44 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 demo01-kafka7/values.yaml diff --git a/demo01-kafka7/values.yaml b/demo01-kafka7/values.yaml new file mode 100644 index 0000000..63c74d7 --- /dev/null +++ b/demo01-kafka7/values.yaml @@ -0,0 +1,44 @@ +#version: kafka, 1.0.0 +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaUser +metadata: + name: "service-account-service-demo01-kafka7" + 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