blob: d1f3f2a84a3b0c6a2c95099dc71eee182e206a67 [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
104applicationConfig:
105 dmaap.dmaapConsumerConfiguration.dmaapContentType: "application/json"
106 dmaap.dmaapConsumerConfiguration.consumerId: "c12"
107 dmaap.dmaapConsumerConfiguration.consumerGroup: "OpenDCAE-c12"
108 dmaap.dmaapConsumerConfiguration.timeoutMs: -1
109 dmaap.dmaapProducerConfiguration.dmaapContentType: "application/json"
110 dmaap.dmaapUpdateProducerConfiguration.dmaapContentType: "application/json"
111 aai.aaiClientConfiguration.pnfUrl: https://aai.onap.svc.cluster.local:8443/aai/v12/network/pnfs/pnf
112 aai.aaiClientConfiguration.baseUrl: https://aai.onap.svc.cluster.local:8443/aai/v12
113 aai.aaiClientConfiguration.aaiHost: aai.onap.svc.cluster.local
114 aai.aaiClientConfiguration.aaiHostPortNumber: 8443
115 aai.aaiClientConfiguration.aaiProtocol: "https"
116 aai.aaiClientConfiguration.aaiUserName: ${AAI_USER}
117 aai.aaiClientConfiguration.aaiUserPassword: ${AAI_PASSWORD}
118 aai.aaiClientConfiguration.aaiIgnoreSslCertificateErrors: true
119 aai.aaiClientConfiguration.aaiBasePath: "/aai/v12"
120 aai.aaiClientConfiguration.aaiPnfPath: "/network/pnfs/pnf"
121 aai.aaiClientConfiguration.aaiServiceInstancePath: "/business/customers/customer/${customer}/service-subscriptions/service-subscription/${serviceType}/service-instances/service-instance/${serviceInstanceId}"
122 aai.aaiClientConfiguration.aaiHeaders:
123 X-FromAppId: "prh"
124 X-TransactionId: "9999"
125 Accept: "application/json"
126 Real-Time: "true"
127 Authorization: $AUTH_HDR
128 security.trustStorePath: "/opt/app/prh/etc/cert/trust.jks"
129 security.trustStorePasswordPath: "/opt/app/prh/etc/cert/trust.pass"
130 security.keyStorePath: "/opt/app/prh/etc/cert/cert.jks"
131 security.keyStorePasswordPath: "/opt/app/prh/etc/cert/jks.pass"
132 security.enableAaiCertAuth: false
133 security.enableDmaapCertAuth: false
134 streams_publishes:
135 pnf-update:
136 type: "message_router"
137 dmaap_info:
138 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_UPDATE
139 pnf-ready:
140 type: "message_router"
141 dmaap_info:
142 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_READY
143 streams_subscribes:
144 ves-reg-output:
145 type: "message_router"
146 dmaap_info:
147 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.VES_PNFREG_OUTPUT
148
149# Resource Limit flavor -By Default using small
150flavor: small
151# Segregation for Different environment (Small and Large)
152resources:
153 small:
154 limits:
155 cpu: 2
156 memory: 2Gi
157 requests:
158 cpu: 1
159 memory: 1Gi
160 large:
161 limits:
162 cpu: 4
163 memory: 4Gi
164 requests:
165 cpu: 2
166 memory: 2Gi
167 unlimited: {}