blob: d481f4aaf502eb4747901c6c38c94294d96a279b [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
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:2.0.0
23 loggingRepository: docker.elastic.co
24 loggingImage: beats/filebeat:5.5.0
25 persistence:
26 mountPath: /dockerdata-nfs
27
28#################################################################
29# Application configuration defaults.
30#################################################################
31# application image
32repository: nexus3.onap.org:10001
33pullPolicy: Always
Gary Wu72901cd2018-11-15 18:27:40 -080034image: onap/music/prom:1.0.5
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040035
36# application configuration
37config:
38 # generate aid from onboarding your app in MUSIC
39 aid: "aid_for_your_app"
40 deployment: "test_onap"
41 password: "onap123"
42 musicLocation:
43 - "1.2.3.4"
44 - "1.2.3.5"
45 - "1.2.3.6"
46 musicConnectionTimeoutMs: "1000"
47 promTimeout: "35000"
48 coreMonitorSleepTime: "15000"
49 noOfRetryAttempts: "2"
50 restartBackoffTime: "15000"
51 healthChecks:
52 # All top-level checks must pass
53 - "Health Check: SDNC - SDN Host"
54 - "Health Check: SDNC"
55 - "Health Check: SDNC ODL Cluster"
56 - "Health Check: SDNC Portal"
57 # Within nested lists, only one must pass
58 - - "Health Check: SDNC-SDN-CTL-DB-01"
59 - "Health Check: SDNC-SDN-CTL-DB-02"
60 messageRouterTopic: "SDNC-GEO-REDUNDANCY"
61
62odl:
63 jolokia:
64 username: "admin"
65 password: "admin"
66 restconf:
67 username: "admin"
68 password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
69
70coreDNS:
71 host: 1.2.3.7
72 sshUser: root
73 sshKeyFile: /app/config/coredns/coredns.key
74 switchScript: /home/ubuntu/dnsSwitch.bash
75
76nodeSelector: {}
77
78affinity: {}
79
80# probe configuration parameters
81liveness:
82 initialDelaySeconds: 90
83 periodSeconds: 90
84 # necessary to disable liveness probe when setting breakpoints
85 # in debugger so K8s doesn't restart unresponsive container
86 enabled: true
87
88readiness:
89 initialDelaySeconds: 10
90 periodSeconds: 10
91
92persistence:
93 enabled: true
94 accessMode: ReadWriteOnce
95 size: 1Gi
96 mountPath: /dockerdata-nfs
97 mountSubPath: coredns
98
99ingress:
100 enabled: false
101
102resources: {}