Fix the issue with pomba srv decomp aai client
[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 # probe configuration parameters
60 liveness:
61   initialDelaySeconds: 10
62   periodSeconds: 10
63   # necessary to disable liveness probe when setting breakpoints
64   # in debugger so K8s doesn't restart unresponsive container
65   enabled: true
66
67 readiness:
68   initialDelaySeconds: 10
69   periodSeconds: 10
70
71 ## Persist data to a persitent volume
72 persistence:
73   enabled: true
74
75   ## A manually managed Persistent Volume and Claim
76   ## Requires persistence.enabled: true
77   ## If defined, PVC must be created manually before volume will be bound
78   # existingClaim:
79   volumeReclaimPolicy: Retain
80
81   ## database data Persistent Volume Storage Class
82   ## If defined, storageClassName: <storageClass>
83   ## If set to "-", storageClassName: "", which disables dynamic provisioning
84   ## If undefined (the default) or set to null, no storageClassName spec is
85   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
86   ##   GKE, AWS & OpenStack)
87   ##
88   # storageClass: "-"
89   accessMode: ReadWriteMany
90   size: 2Gi
91   mountPath: /dockerdata-nfs
92   mountSubPath: oof/cassandra/data
93 service:
94   type: ClusterIP
95   name: oof-has-cassandra
96   portName: oof-has-cassandra
97   externalPort: 9160
98   internalPort: 9160
99   externalPort2: 7000
100   internalPort2: 7000
101   externalPort3: 7001
102   internalPort3: 7001
103   externalPort4: 7199
104   internalPort4: 7199
105   externalPort5: 9042
106   internalPort5: 9042
107
108 ingress:
109   enabled: false