blob: 5b608943ab20451e41629dfae66310a221c3eed5 [file] [log] [blame]
Jack Lucasd41dbdb2021-02-16 11:07:28 -05001#============LICENSE_START========================================================
2# ================================================================================
3# Copyright (c) 2021 J. F. Lucas. All rights reserved.
4# ================================================================================
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# ============LICENSE_END=========================================================
17
18#################################################################
19# Global configuration defaults.
20#################################################################
21global:
22 nodePortPrefix: 302
23 nodePortPrefixExt: 304
24
25#################################################################
26# Filebeat configuration defaults.
27#################################################################
28filebeatConfig:
29 logstashServiceName: log-ls
30 logstashPort: 5044
31
32#################################################################
33# initContainer images.
34#################################################################
35tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
36consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.0
37
38#################################################################
39# Application configuration defaults.
40#################################################################
41# application image
42image: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.5.6
43pullPolicy: Always
44
45# log directory where logging sidecar should look for log files
46# if absent, no sidecar will be deployed
47logDirectory: /opt/app/prh/logs
48
49# directory where TLS certs should be stored
50# if absent, no certs will be retrieved and stored
51certDirectory: /opt/app/prh/etc/cert
52
53# TLS role -- set to true if microservice acts as server
54# If true, an init container will retrieve a server cert
55# and key from AAF and mount them in certDirectory.
56tlsServer: true
57
58secrets:
59 - uid: &aaiCredsUID aaicreds
60 type: basicAuth
61 login: '{{ .Values.aaiCreds.user }}'
62 password: '{{ .Values.aaiCreds.password }}'
63 passwordPolicy: required
64
65# dependencies
66readinessCheck:
67 wait_for:
68 - dcae-config-binding-service
69 - aaf-cm
70
71# probe configuration
72readiness:
73 initialDelaySeconds: 5
74 periodSeconds: 15
75 path: /heartbeat
76 scheme: HTTP
77 port: 8100
78
79# service configuration
80service:
81 type: ClusterIP
82 name: dcae-prh
83 ports:
84 - port: 8100
85 name: http
86
87aaiCreds:
88 user: AAI
89 password: AAI
90
91credentials:
92- name: AAI_USER
93 uid: *aaiCredsUID
94 key: login
95- name: AAI_PASSWORD
96 uid: *aaiCredsUID
97 key: password
98
99customEnvVars:
100- name: AUTH_HDR
101 value: "Basic `echo -n ${AAI_USER}:${AAI_PASSWORD} | base64`"
102
103# initial application configuration
vv770d5026ae32021-07-26 19:42:44 +0000104# Configuration used for in-app substitution must be defined as $${undefined}{<parameter>} under applicationConfig
105# inorder to get ${<parameter>} post envsubst (done part of dcae helm service-common templates)
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500106applicationConfig:
107 dmaap.dmaapConsumerConfiguration.dmaapContentType: "application/json"
108 dmaap.dmaapConsumerConfiguration.consumerId: "c12"
109 dmaap.dmaapConsumerConfiguration.consumerGroup: "OpenDCAE-c12"
110 dmaap.dmaapConsumerConfiguration.timeoutMs: -1
111 dmaap.dmaapProducerConfiguration.dmaapContentType: "application/json"
112 dmaap.dmaapUpdateProducerConfiguration.dmaapContentType: "application/json"
113 aai.aaiClientConfiguration.pnfUrl: https://aai.onap.svc.cluster.local:8443/aai/v12/network/pnfs/pnf
114 aai.aaiClientConfiguration.baseUrl: https://aai.onap.svc.cluster.local:8443/aai/v12
115 aai.aaiClientConfiguration.aaiHost: aai.onap.svc.cluster.local
116 aai.aaiClientConfiguration.aaiHostPortNumber: 8443
117 aai.aaiClientConfiguration.aaiProtocol: "https"
118 aai.aaiClientConfiguration.aaiUserName: ${AAI_USER}
119 aai.aaiClientConfiguration.aaiUserPassword: ${AAI_PASSWORD}
120 aai.aaiClientConfiguration.aaiIgnoreSslCertificateErrors: true
121 aai.aaiClientConfiguration.aaiBasePath: "/aai/v12"
122 aai.aaiClientConfiguration.aaiPnfPath: "/network/pnfs/pnf"
vv770d5026ae32021-07-26 19:42:44 +0000123 aai.aaiClientConfiguration.aaiServiceInstancePath: "/business/customers/customer/$${undefined}{customer}/service-subscriptions/service-subscription/$${undefined}{serviceType}/service-instances/service-instance/$${undefined}{serviceInstanceId}"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500124 aai.aaiClientConfiguration.aaiHeaders:
125 X-FromAppId: "prh"
126 X-TransactionId: "9999"
127 Accept: "application/json"
128 Real-Time: "true"
129 Authorization: $AUTH_HDR
130 security.trustStorePath: "/opt/app/prh/etc/cert/trust.jks"
131 security.trustStorePasswordPath: "/opt/app/prh/etc/cert/trust.pass"
132 security.keyStorePath: "/opt/app/prh/etc/cert/cert.jks"
133 security.keyStorePasswordPath: "/opt/app/prh/etc/cert/jks.pass"
134 security.enableAaiCertAuth: false
135 security.enableDmaapCertAuth: false
136 streams_publishes:
137 pnf-update:
138 type: "message_router"
139 dmaap_info:
140 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_UPDATE
141 pnf-ready:
142 type: "message_router"
143 dmaap_info:
144 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_READY
145 streams_subscribes:
146 ves-reg-output:
147 type: "message_router"
148 dmaap_info:
149 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.VES_PNFREG_OUTPUT
150
151# Resource Limit flavor -By Default using small
152flavor: small
153# Segregation for Different environment (Small and Large)
154resources:
155 small:
156 limits:
157 cpu: 2
158 memory: 2Gi
159 requests:
160 cpu: 1
161 memory: 1Gi
162 large:
163 limits:
164 cpu: 4
165 memory: 4Gi
166 requests:
167 cpu: 2
168 memory: 2Gi
169 unlimited: {}