[DCAEGEN2] Ves-open-api Add mech to load config at deploy time 16/132616/4
authorTomasz Wrobel <tomasz.wrobel@nokia.com>
Wed, 7 Dec 2022 11:37:02 +0000 (12:37 +0100)
committerTomasz Wrobel <tomasz.wrobel@nokia.com>
Wed, 7 Dec 2022 13:50:44 +0000 (14:50 +0100)
Enable configuration ves-open-api by Helm values

Issue-ID: DCAEGEN2-3316
Signed-off-by: Tomasz Wrobel <tomasz.wrobel@nokia.com>
Change-Id: If6e70d63f961aaa7d26e1680f7bb917cf4de3546

kubernetes/dcaegen2-services/components/dcae-ves-openapi-manager/Chart.yaml
kubernetes/dcaegen2-services/components/dcae-ves-openapi-manager/templates/configmap.yaml [new file with mode: 0644]
kubernetes/dcaegen2-services/components/dcae-ves-openapi-manager/templates/deployment.yaml
kubernetes/dcaegen2-services/components/dcae-ves-openapi-manager/values.yaml

index 33b1295..6c8550c 100644 (file)
@@ -35,3 +35,6 @@ dependencies:
   - name: serviceAccount
     version: ~12.x-0
     repository: '@local'
+  - name: dcaegen2-services-common
+    version: ~12.x-0
+    repository: '@local'
diff --git a/kubernetes/dcaegen2-services/components/dcae-ves-openapi-manager/templates/configmap.yaml b/kubernetes/dcaegen2-services/components/dcae-ves-openapi-manager/templates/configmap.yaml
new file mode 100644 (file)
index 0000000..7253125
--- /dev/null
@@ -0,0 +1,20 @@
+{{/*
+#============LICENSE_START========================================================
+# ================================================================================
+# Copyright (c) 2022 Nokia. All rights reserved.
+# ================================================================================
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ============LICENSE_END=========================================================
+*/}}
+
+{{ include "dcaegen2-services-common.configMap" . }}
index 1c6e359..daf8c76 100644 (file)
@@ -52,6 +52,8 @@ spec:
           volumeMounts:
             - name: schema-map
               mountPath: {{ .Values.schemaMap.directory }}
+            - name: app-config
+              mountPath: /app/config/
       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
       volumes:
         - name: schema-map
@@ -61,5 +63,10 @@ spec:
             items:
               - key: {{ .Values.schemaMap.filename }}
                 path: {{ .Values.schemaMap.filename }}
+        - name: app-config
+          configMap:
+            name: {{ include "common.fullname" . }}-application-config-configmap
+            defaultMode: 420
+            optional: true
       imagePullSecrets:
-      - name: "{{ include "common.namespace" . }}-docker-registry-key"
\ No newline at end of file
+      - name: "{{ include "common.namespace" . }}-docker-registry-key"
index c07bd52..0b83ce2 100644 (file)
@@ -71,3 +71,22 @@ serviceAccount:
   nameOverride: dcae-ves-openapi-manager
   roles:
     - read
+
+# initial application configuration
+applicationConfig:
+  vesopenapimanager:
+    validation:
+      schemaMapPath: ${SCHEMA_MAP_PATH:./src/main/resources/schema-map.json}
+      eventDomainPath: /event/structure/commonEventHeader/structure/domain/value
+      eventSchemaReferencePath: /event/structure/stndDefinedFields/structure/schemaReference/value
+    distribution:
+      sdcAddress: ${SDC_ADDRESS:sdc-be.onap:30204}
+      user: dcae
+      password: Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
+      pollingInterval: 20
+      pollingTimeout: 20
+      consumerGroup: dcaegen2
+      environmentName: AUTO
+      consumerID: ves-openapi-manager
+      activateServerTLSAuth: false
+      isFilterInEmptyResources: false