blob: dcbedf4b2f856657e6b754a408499fa374b49392 [file] [log] [blame]
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -04001# ================================ LICENSE_START =============================
2# ============================================================================
vv770d62d53782022-01-03 14:35:11 +00003# Copyright (c) 2021-2022 AT&T Intellectual Property. All rights reserved.
Jack Lucasc9797322022-03-18 12:32:59 -04004# Copyright (c) 2022 J. F. Lucas. All rights reserved.
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -04005# ============================================================================
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: false
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040026
27#################################################################
28# Filebeat Configuration Defaults.
29#################################################################
30filebeatConfig:
31 logstashServiceName: log-ls
32 logstashPort: 5044
33
34#################################################################
35# Secrets Configuration.
36#################################################################
37secrets:
38 - uid: &controllerCredsUID controllercreds
39 type: basicAuth
40 login: '{{ .Values.controllerCreds.username }}'
41 password: '{{ .Values.controllerCreds.password }}'
42 passwordPolicy: required
43
44
45#################################################################
46# InitContainer Images.
47#################################################################
48tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040049
50#################################################################
51# Application Configuration Defaults.
52#################################################################
53# Application Image
Vijay Venkatesh Kumar0e73b022022-09-13 12:37:13 -040054image: onap/org.onap.dcaegen2.collectors.restconfcollector:1.3.4
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040055pullPolicy: Always
56
57# Log directory where logging sidecar should look for log files
Maciej Wereski7000a7c2021-12-16 12:24:06 +010058# if path is set to null sidecar won't be deployed in spite of
59# global.centralizedLoggingEnabled setting.
60log:
61 path: null # /opt/app/restconfcollector/logs
62logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040063
64# Directory where TLS certs should be stored
65# if absent, no certs will be retrieved and stored
66certDirectory: /opt/app/dcae-certificate
67
68# TLS role -- set to true if microservice acts as server
69# If true, an init container will retrieve a server cert
70# and key from AAF and mount them in certDirectory.
rope2525a7fbee2022-07-25 20:00:36 +010071tlsServer: false
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040072
73# Dependencies
74readinessCheck:
75 wait_for:
rope2525a7fbee2022-07-25 20:00:36 +010076 - message-router
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040077
78# Probe Configuration
79readiness:
80 initialDelaySeconds: 100
81 periodSeconds: 60
82 timeoutSeconds: 5
83 path: /healthcheck
84 scheme: HTTP
85 port: 8080
86
87
88# service configuration
89service:
90 type: NodePort
91 name: dcae-restconf-collector
92 ports:
93 - name: http
94 port: 8443
95 plain_port: 8080
96 port_protocol: http
97 nodePort: 16
98 useNodePortExt: true
99
Andreas Geissler261763a2022-10-17 18:39:54 +0200100ingress:
101 enabled: false
102 service:
103 - baseaddr: "dcae-restconf-collector-api"
104 name: "dcae-restconf-collector"
105 port: 8443
106 plain_port: 8080
107 config:
108 ssl: "redirect"
109
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -0400110# AAF Credentials
111controllerCreds:
112 username: access
113 password: Huawei@123
114
115credentials:
116- name: CONTROLLER_USERNAME
117 uid: *controllerCredsUID
118 key: login
119- name: CONTROLLER_PASSWORD
120 uid: *controllerCredsUID
121 key: password
122
Vijay Venkatesh Kumar5e138112021-12-14 11:41:36 -0500123# application environments
124applicationEnv:
125 LOG4J_FORMAT_MSG_NO_LOOKUPS: 'true'
126
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -0400127# Initial Application Configuration
128applicationConfig:
129 collector.rcc.appDescription: DCAE RestConf Collector Application
130 collector.rcc.appName: dcae-rcc
131 collector.rcc.dmaap.streamid: notification=device-registration
132 collector.rcc.inputQueue.maxPending: '8096'
133 tomcat.maxthreads: '200'
134 collector.rcc.service.port: '8080'
Andreas Geisslerb0841b82022-12-16 10:40:21 +0100135 # Disabling of secure port not working (DCAEGEN2-3336)
136 collector.rcc.service.secure.port: '0'
137 #collector.rcc.service.secure.port: '8687'
138 #collector.rcc.keystore.file.location: /opt/app/dcae-certificate/cert.jks
139 #collector.rcc.keystore.passwordfile: /opt/app/dcae-certificate/jks.pass
140 #collector.rcc.keystore.alias: dynamically generated
141 #collector.rcc.truststore.file.location: /opt/app/dcae-certificate/trust.jks
142 #collector.rcc.truststore.passwordfile: /opt/app/dcae-certificate/trust.pass
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -0400143 #collector.keystore.file.location: /opt/app/dcae-certificate/external/cert.jks
144 #collector.keystore.passwordfile: /opt/app/dcae-certificate/external/jks.pass
145 collector.header.authflag: '0'
146 collector.header.authlist: sample1,c2FtcGxlMQ==
147 collector.rcc.service.secure.clientauth: '0'
148 streams_publishes:
149 device-registration:
150 dmaap_info:
151 topic_url: http://message-router:3904/events/unauthenticated.DCAE_RCC_OUTPUT
152 type: message_router
Vijay Venkatesh Kumar0e73b022022-09-13 12:37:13 -0400153 rcc_policy: '[{"controller_name":"AccessM&C","controller_restapiUrl":"172.30.0.55:26335","controller_restapiUser":"${CONTROLLER_USERNAME}","controller_restapiPassword":"${CONTROLLER_PASSWORD}","controller_accessTokenUrl":"/rest/plat/smapp/v1/oauth/token","controller_accessTokenFile":"./etc/access-token.json","controller_accessTokenMethod":"put","controller_subsMethod":"post","controller_subscriptionUrl":"/restconf/v1/operations/huawei-nce-notification-action:establish-subscription","controller_disableSsl":"true","event_details":[{"event_name":"ONT_registration","event_description":"ONTregistartionevent","event_sseventUrlEmbed":"true","event_sseventsField":"output.url","event_sseventsUrl":"null","event_subscriptionTemplate":"./etc/ont_registartion_subscription_template.json","event_unSubscriptionTemplate":"./etc/ont_registartion_unsubscription_template.json","event_ruleId":"12345678","modifyData":"true","modifyMethod": "modifyOntEvent","userData": "remote_id=AC9.0234.0337;svlan=100;cvlan=10;"}]}]'
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -0400154
155#applicationEnv:
156# CONTROLLER_IP: "172.30.0.55"
157# CONTROLLER_PORT: "26335"
158
159
160# Resource Limit Flavor -By Default Using Small
161flavor: small
162
163# Segregation for Different Environment (Small and Large)
164resources:
165 small:
166 limits:
167 cpu: 1
168 memory: 1Gi
169 requests:
170 cpu: 1
171 memory: 1Gi
172 large:
173 limits:
174 cpu: 2
175 memory: 2Gi
176 requests:
177 cpu: 2
178 memory: 2Gi
179 unlimited: {}
farida azmycb03ac72021-09-12 16:14:12 +0200180
181#Pods Service Account
182serviceAccount:
183 nameOverride: dcae-restconf-collector
184 roles:
185 - read