blob: 92467f4a7c277e64cdc2768234a2d215abd55879 [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 Lucas64da4e72023-03-03 14:46:05 -05004# Copyright (c) 2022-2023 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
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040044#################################################################
45# Application Configuration Defaults.
46#################################################################
47# Application Image
Vijay Venkatesh Kumar0e73b022022-09-13 12:37:13 -040048image: onap/org.onap.dcaegen2.collectors.restconfcollector:1.3.4
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040049pullPolicy: Always
50
51# Log directory where logging sidecar should look for log files
Maciej Wereski7000a7c2021-12-16 12:24:06 +010052# if path is set to null sidecar won't be deployed in spite of
53# global.centralizedLoggingEnabled setting.
54log:
55 path: null # /opt/app/restconfcollector/logs
56logConfigMapNamePrefix: '{{ include "common.fullname" . }}'
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040057
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040058# Dependencies
59readinessCheck:
60 wait_for:
rope2525a7fbee2022-07-25 20:00:36 +010061 - message-router
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040062
63# Probe Configuration
64readiness:
65 initialDelaySeconds: 100
66 periodSeconds: 60
67 timeoutSeconds: 5
68 path: /healthcheck
69 scheme: HTTP
70 port: 8080
71
72
73# service configuration
74service:
75 type: NodePort
76 name: dcae-restconf-collector
77 ports:
78 - name: http
79 port: 8443
80 plain_port: 8080
81 port_protocol: http
82 nodePort: 16
83 useNodePortExt: true
84
Andreas Geissler261763a2022-10-17 18:39:54 +020085ingress:
86 enabled: false
87 service:
88 - baseaddr: "dcae-restconf-collector-api"
89 name: "dcae-restconf-collector"
90 port: 8443
91 plain_port: 8080
92 config:
93 ssl: "redirect"
94
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -040095# AAF Credentials
96controllerCreds:
97 username: access
98 password: Huawei@123
99
100credentials:
101- name: CONTROLLER_USERNAME
102 uid: *controllerCredsUID
103 key: login
104- name: CONTROLLER_PASSWORD
105 uid: *controllerCredsUID
106 key: password
107
Vijay Venkatesh Kumar5e138112021-12-14 11:41:36 -0500108# application environments
109applicationEnv:
110 LOG4J_FORMAT_MSG_NO_LOOKUPS: 'true'
111
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -0400112# Initial Application Configuration
113applicationConfig:
114 collector.rcc.appDescription: DCAE RestConf Collector Application
115 collector.rcc.appName: dcae-rcc
116 collector.rcc.dmaap.streamid: notification=device-registration
117 collector.rcc.inputQueue.maxPending: '8096'
118 tomcat.maxthreads: '200'
119 collector.rcc.service.port: '8080'
Andreas Geisslerb0841b82022-12-16 10:40:21 +0100120 # Disabling of secure port not working (DCAEGEN2-3336)
121 collector.rcc.service.secure.port: '0'
122 #collector.rcc.service.secure.port: '8687'
123 #collector.rcc.keystore.file.location: /opt/app/dcae-certificate/cert.jks
124 #collector.rcc.keystore.passwordfile: /opt/app/dcae-certificate/jks.pass
125 #collector.rcc.keystore.alias: dynamically generated
126 #collector.rcc.truststore.file.location: /opt/app/dcae-certificate/trust.jks
127 #collector.rcc.truststore.passwordfile: /opt/app/dcae-certificate/trust.pass
Vijay Venkatesh Kumarc269b262021-06-29 13:49:15 -0400128 #collector.keystore.file.location: /opt/app/dcae-certificate/external/cert.jks
129 #collector.keystore.passwordfile: /opt/app/dcae-certificate/external/jks.pass
130 collector.header.authflag: '0'
131 collector.header.authlist: sample1,c2FtcGxlMQ==
132 collector.rcc.service.secure.clientauth: '0'
133 streams_publishes:
134 device-registration:
135 dmaap_info:
136 topic_url: http://message-router:3904/events/unauthenticated.DCAE_RCC_OUTPUT
137 type: message_router
Vijay Venkatesh Kumar0e73b022022-09-13 12:37:13 -0400138 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 -0400139
140#applicationEnv:
141# CONTROLLER_IP: "172.30.0.55"
142# CONTROLLER_PORT: "26335"
143
144
145# Resource Limit Flavor -By Default Using Small
146flavor: small
147
148# Segregation for Different Environment (Small and Large)
149resources:
150 small:
151 limits:
152 cpu: 1
153 memory: 1Gi
154 requests:
155 cpu: 1
156 memory: 1Gi
157 large:
158 limits:
159 cpu: 2
160 memory: 2Gi
161 requests:
162 cpu: 2
163 memory: 2Gi
164 unlimited: {}
farida azmycb03ac72021-09-12 16:14:12 +0200165
166#Pods Service Account
167serviceAccount:
168 nameOverride: dcae-restconf-collector
169 roles:
170 - read