vvp -- VNF Validation Platform
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-music / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T,VMware
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   repository: nexus3.onap.org:10001
22   readinessRepository: oomk8s
23   readinessImage: readiness-check:2.0.0
24   loggingRepository: docker.elastic.co
25   loggingImage: beats/filebeat:5.5.0
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30 # application image
31 repository: nexus3.onap.org:10001
32 image: library/tomcat:8.5
33 pullPolicy: Always
34 warImage: onap/music/music:2.5.3
35
36 # flag to enable debugging - application support required
37 debugEnabled: false
38
39 # application configuration
40 config:
41   usernameCassandra: cassandra1
42   passwordCassandra: cassandra1
43
44 # default number of instances
45 replicaCount: 1
46
47 nodeSelector: {}
48
49 affinity: {}
50
51 # Resource Limit flavor -By Default using small
52 flavor: small
53 # Segregation for Different environment (Small and Large)
54 resources:
55   small:
56     limits:
57       memory: 4Gi
58       cpu: 2000m
59     requests:
60       memory: 1Gi
61       cpu: 500m
62   large:
63     limits:
64       memory: 8Gi
65       cpu: 4000m
66     requests:
67       memory: 2Gi
68       cpu: 1000m
69   unlimited: {}
70 # probe configuration parameters
71 liveness:
72   initialDelaySeconds: 10
73   periodSeconds: 10
74   # necessary to disable liveness probe when setting breakpoints
75   # in debugger so K8s doesn't restart unresponsive container
76   enabled: true
77
78 readiness:
79   initialDelaySeconds: 10
80   periodSeconds: 10
81
82 service:
83   type: NodePort
84   name: oof-has-music
85   externalPort: 8080
86   internalPort: 8080
87   nodePort: 76
88   portName: oof-has-music
89 ingress:
90   enabled: false