[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / sdnc / components / sdnc-prom / values.yaml
1 # 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 #################################################################
18 global:
19   nodePortPrefix: 302
20   repository: nexus3.onap.org:10001
21   readinessImage: onap/oom/readiness:3.0.1
22   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
31 repository: nexus3.onap.org:10001
32 pullPolicy: Always
33 image: onap/music/prom:1.0.5
34
35 # application configuration
36 config:
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
61 odl:
62   jolokia:
63     username: "admin"
64     password: "admin"
65   restconf:
66     username: "admin"
67     password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
68
69 coreDNS:
70   host: 1.2.3.7
71   sshUser: root
72   sshKeyFile: /app/config/coredns/coredns.key
73   switchScript: /home/ubuntu/dnsSwitch.bash
74
75 nodeSelector: {}
76
77 affinity: {}
78
79 # probe configuration parameters
80 liveness:
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
87 readiness:
88   initialDelaySeconds: 10
89   periodSeconds: 10
90
91 persistence:
92   enabled: true
93   accessMode: ReadWriteOnce
94   size: 1Gi
95   mountPath: /dockerdata-nfs
96   mountSubPath: coredns
97
98 ingress:
99   enabled: false
100
101 resources: {}