blob: 80154c781ff075a43e0cda7bb66b21af497ab223 [file] [log] [blame]
Jack Lucasd41dbdb2021-02-16 11:07:28 -05001#============LICENSE_START========================================================
2# ================================================================================
Jack Lucasc9797322022-03-18 12:32:59 -04003# Copyright (c) 2021-2022 J. F. Lucas. All rights reserved.
Tomasz Wrobel0d893db2022-02-17 11:50:43 +01004# Copyright (c) 2022 Nokia. All rights reserved.
Jack Lucasd41dbdb2021-02-16 11:07:28 -05005# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18
19#################################################################
20# Global configuration defaults.
21#################################################################
22global:
23 nodePortPrefix: 302
24 nodePortPrefixExt: 304
Maciej Wereski7000a7c2021-12-16 12:24:06 +010025 centralizedLoggingEnabled: true
Jack Lucasd41dbdb2021-02-16 11:07:28 -050026
27#################################################################
28# Filebeat configuration defaults.
29#################################################################
30filebeatConfig:
31 logstashServiceName: log-ls
32 logstashPort: 5044
33
34#################################################################
35# initContainer images.
36#################################################################
37tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Jack Lucasd41dbdb2021-02-16 11:07:28 -050038
39#################################################################
40# Application configuration defaults.
41#################################################################
42# application image
Tomasz Wrobelf39c6402022-09-12 15:48:10 +020043image: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.8.1
Jack Lucasd41dbdb2021-02-16 11:07:28 -050044pullPolicy: Always
45
46# log directory where logging sidecar should look for log files
Maciej Wereski7000a7c2021-12-16 12:24:06 +010047# if path is set to null sidecar won't be deployed in spite of
48# global.centralizedLoggingEnabled setting.
49log:
50 path: /opt/app/prh/logs
51logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
Jack Lucasd41dbdb2021-02-16 11:07:28 -050052
53# directory where TLS certs should be stored
54# if absent, no certs will be retrieved and stored
55certDirectory: /opt/app/prh/etc/cert
56
57# TLS role -- set to true if microservice acts as server
58# If true, an init container will retrieve a server cert
59# and key from AAF and mount them in certDirectory.
rope2525a7fbee2022-07-25 20:00:36 +010060tlsServer: false
Jack Lucasd41dbdb2021-02-16 11:07:28 -050061
62secrets:
63 - uid: &aaiCredsUID aaicreds
64 type: basicAuth
65 login: '{{ .Values.aaiCreds.user }}'
66 password: '{{ .Values.aaiCreds.password }}'
67 passwordPolicy: required
68
69# dependencies
70readinessCheck:
71 wait_for:
rope2525a7fbee2022-07-25 20:00:36 +010072 - message-router
Jack Lucasd41dbdb2021-02-16 11:07:28 -050073
74# probe configuration
75readiness:
76 initialDelaySeconds: 5
77 periodSeconds: 15
78 path: /heartbeat
79 scheme: HTTP
80 port: 8100
81
82# service configuration
83service:
84 type: ClusterIP
85 name: dcae-prh
86 ports:
87 - port: 8100
88 name: http
89
90aaiCreds:
91 user: AAI
92 password: AAI
93
94credentials:
95- name: AAI_USER
96 uid: *aaiCredsUID
97 key: login
98- name: AAI_PASSWORD
99 uid: *aaiCredsUID
100 key: password
101
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500102# initial application configuration
103applicationConfig:
104 dmaap.dmaapConsumerConfiguration.dmaapContentType: "application/json"
105 dmaap.dmaapConsumerConfiguration.consumerId: "c12"
106 dmaap.dmaapConsumerConfiguration.consumerGroup: "OpenDCAE-c12"
107 dmaap.dmaapConsumerConfiguration.timeoutMs: -1
108 dmaap.dmaapProducerConfiguration.dmaapContentType: "application/json"
109 dmaap.dmaapUpdateProducerConfiguration.dmaapContentType: "application/json"
rope2525a7fbee2022-07-25 20:00:36 +0100110 aai.aaiClientConfiguration.pnfUrl: http://aai-internal.onap.svc.cluster.local:80/aai/v23/network/pnfs/pnf
111 aai.aaiClientConfiguration.baseUrl: http://aai-internal.onap.svc.cluster.local:80/aai/v23
112 aai.aaiClientConfiguration.aaiHost: aai-internal.onap.svc.cluster.local
113 aai.aaiClientConfiguration.aaiHostPortNumber: 80
114 aai.aaiClientConfiguration.aaiProtocol: "http"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500115 aai.aaiClientConfiguration.aaiUserName: ${AAI_USER}
116 aai.aaiClientConfiguration.aaiUserPassword: ${AAI_PASSWORD}
117 aai.aaiClientConfiguration.aaiIgnoreSslCertificateErrors: true
Remigiusz Janeczek3b9d8862021-08-10 13:14:14 +0200118 aai.aaiClientConfiguration.aaiBasePath: "/aai/v23"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500119 aai.aaiClientConfiguration.aaiPnfPath: "/network/pnfs/pnf"
Tomasz Wrobel57a143b2021-08-11 11:55:41 +0200120 aai.aaiClientConfiguration.aaiServiceInstancePath: "/business/customers/customer/{{customer}}/service-subscriptions/service-subscription/{{serviceType}}/service-instances/service-instance/{{serviceInstanceId}}"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500121 aai.aaiClientConfiguration.aaiHeaders:
122 X-FromAppId: "prh"
123 X-TransactionId: "9999"
124 Accept: "application/json"
125 Real-Time: "true"
Jack Lucasf86f6292022-06-08 09:12:29 -0400126 Authorization: ${AUTH_HDR}
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500127 security.trustStorePath: "/opt/app/prh/etc/cert/trust.jks"
128 security.trustStorePasswordPath: "/opt/app/prh/etc/cert/trust.pass"
129 security.keyStorePath: "/opt/app/prh/etc/cert/cert.jks"
130 security.keyStorePasswordPath: "/opt/app/prh/etc/cert/jks.pass"
131 security.enableAaiCertAuth: false
132 security.enableDmaapCertAuth: false
133 streams_publishes:
134 pnf-update:
135 type: "message_router"
136 dmaap_info:
137 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_UPDATE
138 pnf-ready:
139 type: "message_router"
140 dmaap_info:
141 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_READY
142 streams_subscribes:
143 ves-reg-output:
144 type: "message_router"
145 dmaap_info:
146 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.VES_PNFREG_OUTPUT
147
Remigiusz Janeczek92231d42021-08-27 16:41:56 +0200148applicationEnv:
149 CBS_CLIENT_CONFIG_PATH: '/app-config-input/application_config.yaml'
Jack Lucasf86f6292022-06-08 09:12:29 -0400150 AUTH_HDR: '{{ printf "Basic %s" (print .Values.aaiCreds.user ":" .Values.aaiCreds.password | b64enc) }}'
Remigiusz Janeczek92231d42021-08-27 16:41:56 +0200151
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500152# Resource Limit flavor -By Default using small
153flavor: small
154# Segregation for Different environment (Small and Large)
155resources:
156 small:
157 limits:
158 cpu: 2
159 memory: 2Gi
160 requests:
161 cpu: 1
162 memory: 1Gi
163 large:
164 limits:
165 cpu: 4
166 memory: 4Gi
167 requests:
168 cpu: 2
169 memory: 2Gi
170 unlimited: {}
farida azmycb03ac72021-09-12 16:14:12 +0200171
172#Pods Service Account
173serviceAccount:
174 nameOverride: dcae-prh
175 roles:
176 - read