Merge "[VNFSDK] Use common secret template for postgres credentials"
[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   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.2
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
32 repository: nexus3.onap.org:10001
33 pullPolicy: Always
34 image: onap/music/prom:1.0.5
35
36 # application configuration
37 config:
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
62 odl:
63   jolokia:
64     username: "admin"
65     password: "admin"
66   restconf:
67     username: "admin"
68     password: "Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U"
69
70 coreDNS:
71   host: 1.2.3.7
72   sshUser: root
73   sshKeyFile: /app/config/coredns/coredns.key
74   switchScript: /home/ubuntu/dnsSwitch.bash
75
76 nodeSelector: {}
77
78 affinity: {}
79
80 # probe configuration parameters
81 liveness:
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
88 readiness:
89   initialDelaySeconds: 10
90   periodSeconds: 10
91
92 persistence:
93   enabled: true
94   accessMode: ReadWriteOnce
95   size: 1Gi
96   mountPath: /dockerdata-nfs
97   mountSubPath: coredns
98
99 ingress:
100   enabled: false
101
102 resources: {}