adae0405b21f2a3fd9d930fb719cc2f2179920bb
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-cassandra / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Default values for mariadb.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20   persistence: {}
21
22
23 # application image
24 repository: nexus3.onap.org:10001
25 image: onap/music/cassandra_music:3.0.0
26 pullPolicy: Always
27
28 # application configuration
29 config:
30   cassandraUsername: root
31   cassandraPassword: Aa123456
32
33 # default number of instances
34 replicaCount: 1
35
36 nodeSelector: {}
37
38 affinity: {}
39
40 # probe configuration parameters
41 liveness:
42   initialDelaySeconds: 10
43   periodSeconds: 10
44   # necessary to disable liveness probe when setting breakpoints
45   # in debugger so K8s doesn't restart unresponsive container
46   enabled: true
47
48 readiness:
49   initialDelaySeconds: 10
50   periodSeconds: 10
51
52 ## Persist data to a persitent volume
53 persistence:
54   enabled: true
55
56   ## A manually managed Persistent Volume and Claim
57   ## Requires persistence.enabled: true
58   ## If defined, PVC must be created manually before volume will be bound
59   # existingClaim:
60   volumeReclaimPolicy: Retain
61
62   ## database data Persistent Volume Storage Class
63   ## If defined, storageClassName: <storageClass>
64   ## If set to "-", storageClassName: "", which disables dynamic provisioning
65   ## If undefined (the default) or set to null, no storageClassName spec is
66   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
67   ##   GKE, AWS & OpenStack)
68   ##
69   # storageClass: "-"
70   accessMode: ReadWriteMany
71   size: 2Gi
72   mountPath: /dockerdata-nfs
73   mountSubPath: oof/cassandra/data
74 service:
75   type: ClusterIP
76   name: oof-has-cassandra
77   portName: oof-has-cassandra
78   externalPort: 9160
79   internalPort: 9160
80   externalPort2: 7000
81   internalPort2: 7000
82   externalPort3: 7001
83   internalPort3: 7001
84   externalPort4: 7199
85   internalPort4: 7199
86   externalPort5: 9042
87   internalPort5: 9042
88
89 ingress:
90   enabled: false
91
92 resources: {}