blob: a7f62912b1070c08bd6a9135ed53c6e4b4d752f4 [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
Jack Lucasd263e692021-08-16 16:02:23 -040036consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.1.1
Jack Lucasd41dbdb2021-02-16 11:07:28 -050037
38#################################################################
39# Application configuration defaults.
40#################################################################
41# application image
Remigiusz Janeczek92231d42021-08-27 16:41:56 +020042image: onap/org.onap.dcaegen2.services.prh.prh-app-server:1.7.1
Jack Lucasd41dbdb2021-02-16 11:07:28 -050043pullPolicy: 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"
Remigiusz Janeczek3b9d8862021-08-10 13:14:14 +0200111 aai.aaiClientConfiguration.pnfUrl: https://aai.onap.svc.cluster.local:8443/aai/v23/network/pnfs/pnf
112 aai.aaiClientConfiguration.baseUrl: https://aai.onap.svc.cluster.local:8443/aai/v23
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500113 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
Remigiusz Janeczek3b9d8862021-08-10 13:14:14 +0200119 aai.aaiClientConfiguration.aaiBasePath: "/aai/v23"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500120 aai.aaiClientConfiguration.aaiPnfPath: "/network/pnfs/pnf"
Tomasz Wrobel57a143b2021-08-11 11:55:41 +0200121 aai.aaiClientConfiguration.aaiServiceInstancePath: "/business/customers/customer/{{customer}}/service-subscriptions/service-subscription/{{serviceType}}/service-instances/service-instance/{{serviceInstanceId}}"
Jack Lucasd41dbdb2021-02-16 11:07:28 -0500122 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
Remigiusz Janeczek92231d42021-08-27 16:41:56 +0200149applicationEnv:
150 CBS_CLIENT_CONFIG_PATH: '/app-config-input/application_config.yaml'
151
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