blob: 09eb397860305a0ca1fae3f461f25d3935cf03c8 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright © 2018 Amdocs, Bell Canada, AT&T
Sylvain Desbureaux1e997192021-02-28 14:59:22 +01003# Modifications Copyright © 2021 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# Model Loader Distribution Client Configuration
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010018*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010019ml.distribution.ACTIVE_SERVER_TLS_AUTH=false
osk1146127fd7d82021-06-18 00:51:17 +020020{{ if ( include "common.needTLS" .) }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010021ml.distribution.ASDC_ADDRESS=sdc-be.{{.Release.Namespace}}:8443
osk1146127fd7d82021-06-18 00:51:17 +020022ml.distribution.ASDC_USE_HTTPS=true
Sylvain Desbureaux70070412020-11-09 21:58:48 +010023ml.distribution.KEYSTORE_PASSWORD=
Sylvain Desbureaux1e997192021-02-28 14:59:22 +010024ml.distribution.KEYSTORE_FILE=
Sylvain Desbureaux70070412020-11-09 21:58:48 +010025ml.distribution.PASSWORD=OBF:1ks51l8d1o3i1pcc1r2r1e211r391kls1pyj1z7u1njf1lx51go21hnj1y0k1mli1sop1k8o1j651vu91mxw1vun1mze1vv11j8x1k5i1sp11mjc1y161hlr1gm41m111nkj1z781pw31kku1r4p1e391r571pbm1o741l4x1ksp
osk1146127fd7d82021-06-18 00:51:17 +020026{{ else }}
27ml.distribution.ASDC_ADDRESS=sdc-be.{{.Release.Namespace}}:8080
28ml.distribution.ASDC_USE_HTTPS=false
29{{ end }}
30ml.distribution.CONSUMER_GROUP=aai-ml-group
31ml.distribution.CONSUMER_ID=aai-ml
32ml.distribution.ENVIRONMENT_NAME=AUTO
Sylvain Desbureaux70070412020-11-09 21:58:48 +010033ml.distribution.POLLING_INTERVAL=30
34ml.distribution.POLLING_TIMEOUT=20
35ml.distribution.USER=aai
36ml.distribution.ARTIFACT_TYPES=MODEL_QUERY_SPEC,TOSCA_CSAR
37ml.distribution.MSG_BUS_ADDRESSES=message-router.{{.Release.Namespace}}
38
39# Model Loader AAI REST Client Configuration
osk1146127fd7d82021-06-18 00:51:17 +020040{{ if ( include "common.needTLS" .) }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010041ml.aai.BASE_URL=https://aai.{{.Release.Namespace}}:8443
osk1146127fd7d82021-06-18 00:51:17 +020042ml.aai.KEYSTORE_FILE=aai-os-cert.p12
43ml.aai.KEYSTORE_PASSWORD=OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
44{{ else }}
45ml.aai.BASE_URL=http://aai.{{.Release.Namespace}}:8080
46{{ end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010047ml.aai.MODEL_URL=/aai/v*/service-design-and-creation/models/model/
48ml.aai.NAMED_QUERY_URL=/aai/v*/service-design-and-creation/named-queries/named-query/
49ml.aai.VNF_IMAGE_URL=/aai/v*/service-design-and-creation/vnf-images
osk1146127fd7d82021-06-18 00:51:17 +020050
Sylvain Desbureaux70070412020-11-09 21:58:48 +010051ml.aai.AUTH_USER=ModelLoader
52ml.aai.AUTH_PASSWORD=OBF:1qvu1v2h1sov1sar1wfw1j7j1wg21saj1sov1v1x1qxw
53
54# Model Loader Babel REST Client Configuration\r
osk1146127fd7d82021-06-18 00:51:17 +020055ml.babel.BASE_URL={{ include "common.scheme" . }}://aai-babel.{{.Release.Namespace}}:9516
Sylvain Desbureaux70070412020-11-09 21:58:48 +010056ml.babel.GENERATE_ARTIFACTS_URL=/services/babel-service/v1/app/generateArtifacts
osk1146127fd7d82021-06-18 00:51:17 +020057{{ if ( include "common.needTLS" .) }}
Sylvain Desbureaux1e997192021-02-28 14:59:22 +010058ml.babel.KEYSTORE_FILE=aaf/local/{{ .Values.certInitializer.fqi_namespace }}.p12
59ml.babel.KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}
60ml.babel.TRUSTSTORE_FILE=aaf/local/{{ .Values.certInitializer.fqi_namespace }}.trust.jks
61ml.babel.TRUSTSTORE_PASSWORD=${TRUSTSTORE_PASSWORD}
osk1146127fd7d82021-06-18 00:51:17 +020062{{ end }}