summaryrefslogtreecommitdiffstats
path: root/kubernetes/sdc/components/sdc-be/values.yaml
diff options
context:
space:
mode:
authorefiacor <fiachra.corcoran@est.tech>2022-07-12 13:19:53 +0100
committerFiachra Corcoran <fiachra.corcoran@est.tech>2022-11-22 14:11:42 +0000
commit3422fe96531c951a3209ac3c2c6a3e8308559812 (patch)
tree9bbe9bafa53fa5e7928015f80a83091302ead06b /kubernetes/sdc/components/sdc-be/values.yaml
parent3502e73a2762fc50f9ba3ae5d65a3efe5f05bead (diff)
[SDC] Add strimzi kafka setup on sdc-be
Add SDC KafkaTopics and KafkaUser Signed-off-by: efiacor <fiachra.corcoran@est.tech> Change-Id: I78542539567d2e3b67376b154ad069df3d1dad55 Issue-ID: DMAAP-1744
Diffstat (limited to 'kubernetes/sdc/components/sdc-be/values.yaml')
-rw-r--r--kubernetes/sdc/components/sdc-be/values.yaml32
1 files changed, 30 insertions, 2 deletions
diff --git a/kubernetes/sdc/components/sdc-be/values.yaml b/kubernetes/sdc/components/sdc-be/values.yaml
index 9f216352c0..faf46e5549 100644
--- a/kubernetes/sdc/components/sdc-be/values.yaml
+++ b/kubernetes/sdc/components/sdc-be/values.yaml
@@ -1,5 +1,6 @@
# Copyright © 2017 Amdocs, Bell Canada
# Modifications Copyright © 2018 AT&T, ZTE
+# Modifications Copyright © 2022 Nordix Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -30,13 +31,20 @@ global:
replicaCount: 3
clusterName: cassandra
dataCenter: Pod
+ # Strimzi kafka config
+ kafka:
+ useKafka: overridden-from-parent-values-yaml
+ sdcBeKafkaUser: overridden-from-parent-values-yaml
+ topics:
+ sdcDistNotifTopic: overridden-from-parent-values-yaml
+ sdcDistStatusTopic: overridden-from-parent-values-yaml
#################################################################
# Application configuration defaults.
#################################################################
# application image
-image: onap/sdc-backend-all-plugins:1.11.9
-backendInitImage: onap/sdc-backend-init:1.11.9
+image: onap/sdc-backend-all-plugins:1.12.0
+backendInitImage: onap/sdc-backend-init:1.12.0
pullPolicy: Always
@@ -70,9 +78,29 @@ certInitializer:
#################################################################
# SDC Config part
#################################################################
+
+secrets:
+ - uid: sdc-be-kafka-secret
+ externalSecret: '{{ tpl (default "" .Values.config.jaasConfExternalSecret) . }}'
+ type: genericKV
+ envs:
+ - name: sasl.jaas.config
+ value: '{{ .Values.config.someConfig }}'
+ policy: generate
+
config:
javaOptions: "-Xmx1536m -Xms1536m"
cassandraSslEnabled: "false"
+ # Strimzi kafka config
+ kafka:
+ saslMech: scram-sha-512
+ securityProtocol: SASL_PLAINTEXT
+ authType: simple
+ topicRetentionMs: 7200000
+ topicSegmentBytes: 1073741824
+ topicConsumer:
+ pattern: SDC-DIST
+ groupId: sdc
# default number of instances
replicaCount: 1