Add property metrics.url.mc to Dashboard chart
[it/dep.git] / ric-aux / 80-Auxiliary-Functions / helm / portal / charts / portal-sdk / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25   env:
26     tomcatDir: "/opt/apache-tomcat-8.0.37"
27   # portal frontend port
28   portalPort: "8989"
29   portalFEPort: "30225"
30   # application's front end hostname.  Must be resolvable on the client side environment
31   portalHostName: "portal.api.simpledemo.onap.org"
32   keystoreFile: "keystoreONAPPortal.p12"
33   truststoreFile: "truststoreONAPall.jks"
34   keypass: ",@{9!OOv%HO@#c+0Z}axu!xV"
35   trustpass: "changeit"
36
37
38 #################################################################
39 # Application configuration defaults.
40 #################################################################
41 # application image
42 repository: nexus3.onap.org:10001
43 image: onap/portal-sdk:2.5.0
44 pullPolicy: Always
45
46 # flag to enable debugging - application support required
47 debugEnabled: false
48
49 # default number of instances
50 replicaCount: 1
51
52 nodeSelector: {}
53
54 affinity: {}
55
56 # probe configuration parameters
57 liveness:
58   initialDelaySeconds: 10
59   periodSeconds: 10
60   # necessary to disable liveness probe when setting breakpoints
61   # in debugger so K8s doesn't restart unresponsive container
62   enabled: true
63
64 readiness:
65   initialDelaySeconds: 10
66   periodSeconds: 10
67
68 service:
69   type: NodePort
70   name: portal-sdk
71   portName: portal-sdk
72   internalPort: 8080
73   externalPort: 8080
74   nodePort: 12
75
76 mariadb:
77   service:
78     name: portal-db
79 widget:
80   service:
81     name: portal-widget
82 cassandra:
83   service:
84     name: portal-cassandra
85   config:
86     cassandraUsername: root
87     cassandraPassword: Aa123456
88 zookeeper:
89   service:
90     name: portal-zookeeper
91 messageRouter:
92   service:
93     name: message-router
94
95 ingress:
96   enabled: false
97
98 # Resource Limit flavor -By Default using small
99 flavor: small
100 # Segregation for Different environment (Small and Large)
101 resources:
102   small:
103     limits:
104       cpu: 4
105       memory: 10Gi
106     requests:
107       cpu: 2
108       memory: 5Gi
109   large:
110     limits:
111       cpu: 8
112       memory: 20Gi
113     requests:
114       cpu: 4
115       memory: 10Gi
116   unlimited: {}