blob: cac362a3a8c562cb2353deea63f0c6b24962b15b [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 Wrobel0d893db2022-02-17 11:50:43 +010043image: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.8.0
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.
60tlsServer: true
61
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:
Jack Lucasd41dbdb2021-02-16 11:07:28 -050072 - aaf-cm
73
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
102customEnvVars:
103- name: AUTH_HDR
104 value: "Basic `echo -n ${AAI_USER}:${AAI_PASSWORD} | base64`"
105
106# initial application configuration
107applicationConfig:
108 dmaap.dmaapConsumerConfiguration.dmaapContentType: "application/json"
109 dmaap.dmaapConsumerConfiguration.consumerId: "c12"
110 dmaap.dmaapConsumerConfiguration.consumerGroup: "OpenDCAE-c12"
111 dmaap.dmaapConsumerConfiguration.timeoutMs: -1
112 dmaap.dmaapProducerConfiguration.dmaapContentType: "application/json"
113 dmaap.dmaapUpdateProducerConfiguration.dmaapContentType: "application/json"
Remigiusz Janeczek3b9d8862021-08-10 13:14:14 +0200114 aai.aaiClientConfiguration.pnfUrl: https://aai.onap.svc.cluster.local:8443/aai/v23/network/pnfs/pnf
115 aai.aaiClientConfiguration.baseUrl: https://aai.onap.svc.cluster.local:8443/aai/v23
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500116 aai.aaiClientConfiguration.aaiHost: aai.onap.svc.cluster.local
117 aai.aaiClientConfiguration.aaiHostPortNumber: 8443
118 aai.aaiClientConfiguration.aaiProtocol: "https"
119 aai.aaiClientConfiguration.aaiUserName: ${AAI_USER}
120 aai.aaiClientConfiguration.aaiUserPassword: ${AAI_PASSWORD}
121 aai.aaiClientConfiguration.aaiIgnoreSslCertificateErrors: true
Remigiusz Janeczek3b9d8862021-08-10 13:14:14 +0200122 aai.aaiClientConfiguration.aaiBasePath: "/aai/v23"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500123 aai.aaiClientConfiguration.aaiPnfPath: "/network/pnfs/pnf"
Tomasz Wrobel57a143b2021-08-11 11:55:41 +0200124 aai.aaiClientConfiguration.aaiServiceInstancePath: "/business/customers/customer/{{customer}}/service-subscriptions/service-subscription/{{serviceType}}/service-instances/service-instance/{{serviceInstanceId}}"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500125 aai.aaiClientConfiguration.aaiHeaders:
126 X-FromAppId: "prh"
127 X-TransactionId: "9999"
128 Accept: "application/json"
129 Real-Time: "true"
130 Authorization: $AUTH_HDR
131 security.trustStorePath: "/opt/app/prh/etc/cert/trust.jks"
132 security.trustStorePasswordPath: "/opt/app/prh/etc/cert/trust.pass"
133 security.keyStorePath: "/opt/app/prh/etc/cert/cert.jks"
134 security.keyStorePasswordPath: "/opt/app/prh/etc/cert/jks.pass"
135 security.enableAaiCertAuth: false
136 security.enableDmaapCertAuth: false
137 streams_publishes:
138 pnf-update:
139 type: "message_router"
140 dmaap_info:
141 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_UPDATE
142 pnf-ready:
143 type: "message_router"
144 dmaap_info:
145 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.PNF_READY
146 streams_subscribes:
147 ves-reg-output:
148 type: "message_router"
149 dmaap_info:
150 topic_url: http://message-router.onap.svc.cluster.local:3904/events/unauthenticated.VES_PNFREG_OUTPUT
151
Remigiusz Janeczek92231d42021-08-27 16:41:56 +0200152applicationEnv:
153 CBS_CLIENT_CONFIG_PATH: '/app-config-input/application_config.yaml'
154
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500155# Resource Limit flavor -By Default using small
156flavor: small
157# Segregation for Different environment (Small and Large)
158resources:
159 small:
160 limits:
161 cpu: 2
162 memory: 2Gi
163 requests:
164 cpu: 1
165 memory: 1Gi
166 large:
167 limits:
168 cpu: 4
169 memory: 4Gi
170 requests:
171 cpu: 2
172 memory: 2Gi
173 unlimited: {}
farida azmycb03ac72021-09-12 16:14:12 +0200174
175#Pods Service Account
176serviceAccount:
177 nameOverride: dcae-prh
178 roles:
179 - read