License addition for oof,multicloud,esr
[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 # 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 ## Persist data to a persitent volume
54 persistence:
55   enabled: true
56
57   ## A manually managed Persistent Volume and Claim
58   ## Requires persistence.enabled: true
59   ## If defined, PVC must be created manually before volume will be bound
60   # existingClaim:
61   volumeReclaimPolicy: Retain
62
63   ## database data Persistent Volume Storage Class
64   ## If defined, storageClassName: <storageClass>
65   ## If set to "-", storageClassName: "", which disables dynamic provisioning
66   ## If undefined (the default) or set to null, no storageClassName spec is
67   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
68   ##   GKE, AWS & OpenStack)
69   ##
70   # storageClass: "-"
71   accessMode: ReadWriteMany
72   size: 2Gi
73   mountPath: /dockerdata-nfs
74   mountSubPath: oof/cassandra/data
75 service:
76   type: ClusterIP
77   name: oof-has-cassandra
78   portName: oof-has-cassandra
79   externalPort: 9160
80   internalPort: 9160
81   externalPort2: 7000
82   internalPort2: 7000
83   externalPort3: 7001
84   internalPort3: 7001
85   externalPort4: 7199
86   internalPort4: 7199
87   externalPort5: 9042
88   internalPort5: 9042
89
90 ingress:
91   enabled: false
92
93 resources: {}