diff options
Diffstat (limited to 'vnfs/DAaaS/kafka-config/templates/topic.yaml')
-rw-r--r-- | vnfs/DAaaS/kafka-config/templates/topic.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vnfs/DAaaS/kafka-config/templates/topic.yaml b/vnfs/DAaaS/kafka-config/templates/topic.yaml new file mode 100644 index 00000000..780ed32f --- /dev/null +++ b/vnfs/DAaaS/kafka-config/templates/topic.yaml @@ -0,0 +1,11 @@ +apiVersion: kafka.strimzi.io/v1alpha1 +kind: KafkaTopic +metadata: + name: {{ .Values.topic.name }} + labels: + strimzi.io/cluster: {{ .Values.topic.cluster }} + annotations: + "helm.sh/hook": "post-install" +spec: + partitions: {{ .Values.topic.partitions }} + replicas: {{ .Values.topic.replicas }} |