Update Docker Image Number
[oom.git] / kubernetes / portal / charts / portal-app / 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
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/portal-app:2.5.0-STAGING-latest
32 pullPolicy: Always
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 10
44   periodSeconds: 10
45   # necessary to disable liveness probe when setting breakpoints
46   # in debugger so K8s doesn't restart unresponsive container
47   enabled: true
48
49 readiness:
50   initialDelaySeconds: 10
51   periodSeconds: 10
52
53 service:
54   type: LoadBalancer
55   name: portal-app
56   portName: portal-app
57   externalPort: 8989
58   internalPort: 8080
59   nodePort: 15
60   externalPort2: 8006
61   internalPort2: 8005
62   nodePort2: 13
63   externalPort3: 8010
64   internalPort3: 8009
65   nodePort3: 14
66   externalPort4: 8443
67   internalPort4: 8443
68   nodePort4: 25
69
70 mariadb:
71   service:
72     name: portal-db
73 widget:
74   service:
75     name: portal-widget
76 cassandra:
77   service:
78     name: portal-cassandra
79   config:
80     cassandraUsername: root
81     cassandraPassword: Aa123456
82 zookeeper:
83   service:
84     name: portal-zookeeper
85 messageRouter:
86   service:
87     name: message-router
88
89 ingress:
90   enabled: false
91
92 # Resource Limit flavor -By Default using small
93 flavor: small
94 # Segregation for Different environment (Small and Large)
95 resources:
96   small:
97     limits:
98       cpu: 2
99       memory: 10Gi
100     requests:
101       cpu: 1
102       memory: 6Gi
103   large:
104     limits:
105       cpu: 4
106       memory: 15Gi
107     requests:
108       cpu: 2
109       memory: 8Gi
110   unlimited: {}