diff options
author | Aaron Hay <ah415j@att.com> | 2018-06-05 13:23:50 -0400 |
---|---|---|
committer | Aaron Hay <ah415j@att.com> | 2018-06-27 11:50:45 -0400 |
commit | 145818b3aaf7181c7c3ded1d6744047fece4a0ee (patch) | |
tree | 648de469e34a5ad64da4d667b78b2298767e71cf /kubernetes/appc/templates | |
parent | 56e950f4095f8b1be0705e3471d57dd21af06f5d (diff) |
Update OOM APPC chart to enhance AAF support
Added AAF config parameters and files needed to allow AAF to work in an APPC OOM environment.
Change-Id: I39f0769e721889a68c6a111adf29d685b9f97dbf
Issue-ID: OOM-1124
Signed-off-by: Aaron Hay <ah415j@att.com>
Diffstat (limited to 'kubernetes/appc/templates')
-rw-r--r-- | kubernetes/appc/templates/statefulset.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kubernetes/appc/templates/statefulset.yaml b/kubernetes/appc/templates/statefulset.yaml index f4409697b3..791d93393e 100644 --- a/kubernetes/appc/templates/statefulset.yaml +++ b/kubernetes/appc/templates/statefulset.yaml @@ -62,6 +62,8 @@ spec: value: "{{ .Values.config.configDir }}" - name: DMAAP_TOPIC_ENV value: "{{ .Values.config.dmaapTopic }}" + - name: ENABLE_AAF + value: "{{ .Values.config.enableAAF }}" - name: ENABLE_ODL_CLUSTER value: "{{ .Values.config.enableClustering }}" - name: APPC_REPLICAS @@ -82,6 +84,9 @@ spec: - mountPath: /opt/onap/appc/data/properties/aaiclient.properties name: onap-appc-data-properties subPath: aaiclient.properties + - mountPath: /opt/onap/appc/data/properties/aaa-app-config.xml + name: onap-appc-data-properties + subPath: aaa-app-config.xml - mountPath: /opt/onap/appc/svclogic/config/svclogic.properties name: onap-appc-svclogic-config subPath: svclogic.properties |