aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Geissler <andreas-geissler@telekom.de>2023-01-18 17:22:48 +0000
committerGerrit Code Review <gerrit@onap.org>2023-01-18 17:22:48 +0000
commit2f43e96c6a84b737590cc4db8a5d53fbac8fd586 (patch)
treeecb8536bdd822f81fcf8ff94409fc6611f91e28e
parent163086b14def48a1c3f43cf90057d0702f601523 (diff)
parent709ea3f8ba1fc234548d13f818c7ec67e50a9ea8 (diff)
Merge "[CPS] Add new Topic for CPS-NCMP AVC Events"
-rw-r--r--docs/sections/release_notes/release-notes-honolulu.rst2
-rw-r--r--kubernetes/cps/templates/cps-kafka-topic.yaml10
-rw-r--r--kubernetes/cps/templates/cps-kafka-user.yaml8
-rwxr-xr-xkubernetes/cps/values.yaml5
4 files changed, 24 insertions, 1 deletions
diff --git a/docs/sections/release_notes/release-notes-honolulu.rst b/docs/sections/release_notes/release-notes-honolulu.rst
index 3a7891a1ba..832ec580cc 100644
--- a/docs/sections/release_notes/release-notes-honolulu.rst
+++ b/docs/sections/release_notes/release-notes-honolulu.rst
@@ -128,7 +128,7 @@ Known Vulnerabilities
Workarounds
-----------
-- `<https://github.com/bitnami/bitnami-docker-mariadb-galera/issues/35>`_
+- `<https://github.com/bitnami/charts/issues>`_
Workaround is to generate a password with "short" strength or pregenerate
passwords without single quote in it. Default deployment is using "short"
password generation for mariadb.
diff --git a/kubernetes/cps/templates/cps-kafka-topic.yaml b/kubernetes/cps/templates/cps-kafka-topic.yaml
index b4ecfcd9c4..33613bc39f 100644
--- a/kubernetes/cps/templates/cps-kafka-topic.yaml
+++ b/kubernetes/cps/templates/cps-kafka-topic.yaml
@@ -45,4 +45,14 @@ metadata:
spec:
config:
retention.ms: {{ .Values.config.ncmpAsyncM2MTopic.retentionMs }}
+---
+apiVersion: kafka.strimzi.io/v1beta2
+kind: KafkaTopic
+metadata:
+ name: {{ .Values.config.dmiCmEventsTopic.name }}
+ labels:
+ strimzi.io/cluster: {{ include "common.release" . }}-strimzi
+spec:
+ config:
+ retention.ms: {{ .Values.config.dmiCmEventsTopic.retentionMs }}
{{- end }} \ No newline at end of file
diff --git a/kubernetes/cps/templates/cps-kafka-user.yaml b/kubernetes/cps/templates/cps-kafka-user.yaml
index fafc8c3369..229e5dc2d5 100644
--- a/kubernetes/cps/templates/cps-kafka-user.yaml
+++ b/kubernetes/cps/templates/cps-kafka-user.yaml
@@ -54,4 +54,12 @@ spec:
type: topic
name: {{ .Values.config.ncmpAsyncM2MTopic.name }}
operation: All
+ - resource:
+ type: group
+ name: {{ .Values.config.dmiCmEventsTopic.consumer.groupId }}
+ operation: All
+ - resource:
+ type: topic
+ name: {{ .Values.config.dmiCmEventsTopic.name }}
+ operation: All
{{- end }} \ No newline at end of file
diff --git a/kubernetes/cps/values.yaml b/kubernetes/cps/values.yaml
index f3e6198ac1..97addae930 100755
--- a/kubernetes/cps/values.yaml
+++ b/kubernetes/cps/values.yaml
@@ -65,6 +65,11 @@ config:
retentionMs: 600000
consumer:
groupId: ncmp-group
+ dmiCmEventsTopic:
+ name: dmi-cm-events
+ retentionMs: 7200000
+ consumer:
+ groupId: ncmp-group
# Enable all CPS components by default
cps-core: