diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-04-07 14:44:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-04-07 14:44:13 +0000 |
commit | a97eb756be051961c8d3d7fb09b9571e1230fc12 (patch) | |
tree | fe10a16b1e4c0872e60166e32feff0408a82198c /kubernetes | |
parent | ff079f9ffdf08c3f39b496bd06cea04f3be0a2e4 (diff) | |
parent | 5ea1db3c031c6d753d2c2b170a3e1ccc1668a2d4 (diff) |
Merge "[SDNC] Provide hardcoded aaiclient.properties file via helm"
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/sdnc/templates/statefulset.yaml | 4 | ||||
-rw-r--r-- | kubernetes/sdnc/values.yaml | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/kubernetes/sdnc/templates/statefulset.yaml b/kubernetes/sdnc/templates/statefulset.yaml index da5d8f30d4..4511ca9125 100644 --- a/kubernetes/sdnc/templates/statefulset.yaml +++ b/kubernetes/sdnc/templates/statefulset.yaml @@ -1,4 +1,5 @@ {{/* +# Copyright © 2020 Samsung Electronics # Copyright © 2017 Amdocs, Bell Canada # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -208,6 +209,9 @@ spec: - mountPath: {{ .Values.config.binDir }}/installSdncDb.sh name: bin subPath: installSdncDb.sh + - mountPath: {{ .Values.config.ccsdkConfigDir }}/aaiclient.properties + name: properties + subPath: aaiclient.properties - mountPath: {{ .Values.config.configDir }}/aaiclient.properties name: properties subPath: aaiclient.properties diff --git a/kubernetes/sdnc/values.yaml b/kubernetes/sdnc/values.yaml index 8cb7c339c7..99ff4b7760 100644 --- a/kubernetes/sdnc/values.yaml +++ b/kubernetes/sdnc/values.yaml @@ -1,3 +1,4 @@ +# Copyright © 2020 Samsung Electronics # Copyright © 2017 Amdocs, Bell Canada # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -159,6 +160,7 @@ config: peerODLCluster: 127.0.0.1 isPrimaryCluster: true configDir: /opt/onap/sdnc/data/properties + ccsdkConfigDir: /opt/onap/ccsdk/data/properties dmaapTopic: SUCCESS dmaapPort: 3904 logstashServiceName: log-ls |