blob: 9551bc4ffd90c1f5588583b9136a90fc8bf72c22 [file] [log] [blame]
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -04001# Copyright © 2018 Amdocs
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020021 readinessImage: onap/oom/readiness:3.0.1
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040022 loggingRepository: docker.elastic.co
23 loggingImage: beats/filebeat:5.5.0
24 persistence:
25 mountPath: /dockerdata-nfs
26
27#################################################################
28# Application configuration defaults.
29#################################################################
30# application image
31repository: nexus3.onap.org:10001
32pullPolicy: Always
Gary Wu72901cd2018-11-15 18:27:40 -080033image: onap/music/prom:1.0.5
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040034
35# application configuration
36config:
37 # generate aid from onboarding your app in MUSIC
38 aid: "aid_for_your_app"
39 deployment: "test_onap"
40 password: "onap123"
41 musicLocation:
42 - "1.2.3.4"
43 - "1.2.3.5"
44 - "1.2.3.6"
45 musicConnectionTimeoutMs: "1000"
46 promTimeout: "35000"
47 coreMonitorSleepTime: "15000"
48 noOfRetryAttempts: "2"
49 restartBackoffTime: "15000"
50 healthChecks:
51 # All top-level checks must pass
52 - "Health Check: SDNC - SDN Host"
53 - "Health Check: SDNC"
54 - "Health Check: SDNC ODL Cluster"
55 - "Health Check: SDNC Portal"
56 # Within nested lists, only one must pass
57 - - "Health Check: SDNC-SDN-CTL-DB-01"
58 - "Health Check: SDNC-SDN-CTL-DB-02"
59 messageRouterTopic: "SDNC-GEO-REDUNDANCY"
60
61odl:
62 jolokia:
63 username: "admin"
64 password: "admin"
65 restconf:
66 username: "admin"
67 password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
68
69coreDNS:
70 host: 1.2.3.7
71 sshUser: root
72 sshKeyFile: /app/config/coredns/coredns.key
73 switchScript: /home/ubuntu/dnsSwitch.bash
74
75nodeSelector: {}
76
77affinity: {}
78
79# probe configuration parameters
80liveness:
81 initialDelaySeconds: 90
82 periodSeconds: 90
83 # necessary to disable liveness probe when setting breakpoints
84 # in debugger so K8s doesn't restart unresponsive container
85 enabled: true
86
87readiness:
88 initialDelaySeconds: 10
89 periodSeconds: 10
90
91persistence:
92 enabled: true
93 accessMode: ReadWriteOnce
94 size: 1Gi
95 mountPath: /dockerdata-nfs
96 mountSubPath: coredns
97
98ingress:
99 enabled: false
100
101resources: {}