diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2022-11-30 10:42:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-11-30 10:42:49 +0000 |
commit | 8098b363a024b253fb4c1880ee58afaa924a7570 (patch) | |
tree | e96389f0215ac063735275f8f2bc1a0c14499acd /kubernetes/multicloud/components/multicloud-k8s/values.yaml | |
parent | d51b5408da62e418132803b5738d0e1755654ba8 (diff) | |
parent | c8c3316188fbc38e7504207432c7f13c69fdfae3 (diff) |
Merge "[MULTICLOUD-SDC-DIST] Updgrade artifactbroker to use kafka native"
Diffstat (limited to 'kubernetes/multicloud/components/multicloud-k8s/values.yaml')
-rw-r--r-- | kubernetes/multicloud/components/multicloud-k8s/values.yaml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/kubernetes/multicloud/components/multicloud-k8s/values.yaml b/kubernetes/multicloud/components/multicloud-k8s/values.yaml index 36cb701a9b..cae151ae58 100644 --- a/kubernetes/multicloud/components/multicloud-k8s/values.yaml +++ b/kubernetes/multicloud/components/multicloud-k8s/values.yaml @@ -18,7 +18,20 @@ global: nodePortPrefixExt: 304 persistence: {} - artifactImage: onap/multicloud/framework-artifactbroker:1.8.1 + artifactImage: onap/multicloud/framework-artifactbroker:1.9.0 + multicloudK8sKafkaUser: mc-k8s-sdc-list-kafka-user + +################################################################# +# Secrets metaconfig +################################################################# +secrets: + - uid: multicloud-k8s-sdc-kafka-secret + externalSecret: '{{ tpl (default "" .Values.config.jaasConfExternalSecret) . }}' + type: genericKV + envs: + - name: sasl.jaas.config + value: '{{ .Values.config.someConfig }}' + policy: generate ################################################################# # Application configuration defaults. @@ -27,6 +40,17 @@ global: image: onap/multicloud/k8s:0.10.1 pullPolicy: Always +config: + someConfig: blah + kafka: + securityProtocol: SASL_PLAINTEXT + saslMechanism: SCRAM-SHA-512 + authType: simple + sdcTopic: + pattern: SDC-DIST + consumerGroup: multicloud + clientId: multicloud-k8s + # flag to enable debugging - application support required debugEnabled: false |