vvp -- VNF Validation Platform
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-cassandra / 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 # Default values for mariadb.
17 # This is a YAML-formatted file.
18 # Declare variables to be passed into your templates.
19 global: # global defaults
20   nodePortPrefix: 302
21   persistence: {}
22
23
24 # application image
25 repository: nexus3.onap.org:10001
26 image: onap/music/cassandra_music:3.0.0
27 pullPolicy: Always
28
29 # application configuration
30 config:
31   cassandraUsername: root
32   cassandraPassword: Aa123456
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # Resource Limit flavor -By Default using small
42 flavor: small
43 # Segregation for Different environment (Small and Large)
44 resources:
45   small:
46     limits:
47       memory: 16Gi
48       cpu: 8000m
49     requests:
50       memory: 8Gi
51       cpu: 4000m
52   large:
53     limits:
54       memory: 32Gi
55       cpu: 16000m
56     requests:
57       memory: 16Gi
58       cpu: 8000m
59   unlimited: {}
60 # probe configuration parameters
61 liveness:
62   initialDelaySeconds: 10
63   periodSeconds: 10
64   # necessary to disable liveness probe when setting breakpoints
65   # in debugger so K8s doesn't restart unresponsive container
66   enabled: true
67
68 readiness:
69   initialDelaySeconds: 10
70   periodSeconds: 10
71
72 ## Persist data to a persitent volume
73 persistence:
74   enabled: true
75
76   ## A manually managed Persistent Volume and Claim
77   ## Requires persistence.enabled: true
78   ## If defined, PVC must be created manually before volume will be bound
79   # existingClaim:
80   volumeReclaimPolicy: Retain
81
82   ## database data Persistent Volume Storage Class
83   ## If defined, storageClassName: <storageClass>
84   ## If set to "-", storageClassName: "", which disables dynamic provisioning
85   ## If undefined (the default) or set to null, no storageClassName spec is
86   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
87   ##   GKE, AWS & OpenStack)
88   ##
89   # storageClass: "-"
90   accessMode: ReadWriteMany
91   size: 2Gi
92   mountPath: /dockerdata-nfs
93   mountSubPath: oof/cassandra/data
94 service:
95   type: ClusterIP
96   name: oof-has-cassandra
97   portName: oof-has-cassandra
98   externalPort: 9160
99   internalPort: 9160
100   externalPort2: 7000
101   internalPort2: 7000
102   externalPort3: 7001
103   internalPort3: 7001
104   externalPort4: 7199
105   internalPort4: 7199
106   externalPort5: 9042
107   internalPort5: 9042
108
109 ingress:
110   enabled: false