From 9a51e07a2164c9be42d9d329559f4d2081b8f3fc Mon Sep 17 00:00:00 2001 From: mpriyank Date: Thu, 22 Sep 2022 10:25:37 +0100 Subject: [CPS] OOM updates for CPS Repos - CPS-Core : Added NCMP tag in properties and updated container image from 3.0.1 to 3.1.4 - Fixed env variable missing in cps-core - Added missing kafka topics(ncmp-events and ncmp-async-m2m) - NCMP-DMI-PLUGIN: update container image from 1.1.0 to 1.2.1 - CPS-TEMPORAL: update container image from 1.1.0 to 1.2.0 Issue-ID: CPS-1290 Issue-ID: CPS-1343 Change-Id: Id5b4b6cfac9ddabe2421300e37f10185cee71ed3 Signed-off-by: mpriyank --- kubernetes/cps/templates/cps-kafka-topic.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'kubernetes/cps/templates/cps-kafka-topic.yaml') diff --git a/kubernetes/cps/templates/cps-kafka-topic.yaml b/kubernetes/cps/templates/cps-kafka-topic.yaml index 1a23ddfc9b..b4ecfcd9c4 100644 --- a/kubernetes/cps/templates/cps-kafka-topic.yaml +++ b/kubernetes/cps/templates/cps-kafka-topic.yaml @@ -25,4 +25,24 @@ spec: config: retention.ms: {{ .Values.config.dataUpdatedTopic.retentionMs }} segment.bytes: {{ .Values.config.dataUpdatedTopic.segmentBytes }} +--- +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaTopic +metadata: + name: {{ .Values.config.ncmpEventsTopic.name }} + labels: + strimzi.io/cluster: {{ include "common.release" . }}-strimzi +spec: + config: + retention.ms: {{ .Values.config.ncmpEventsTopic.retentionMs }} +--- +apiVersion: kafka.strimzi.io/v1beta2 +kind: KafkaTopic +metadata: + name: {{ .Values.config.ncmpAsyncM2MTopic.name }} + labels: + strimzi.io/cluster: {{ include "common.release" . }}-strimzi +spec: + config: + retention.ms: {{ .Values.config.ncmpAsyncM2MTopic.retentionMs }} {{- end }} \ No newline at end of file -- cgit 1.2.3-korg