Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / portal / components / portal-cassandra / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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 image: onap/music/cassandra_music:3.0.0
26 pullPolicy: Always
27
28 #################################################################
29 # Secrets metaconfig
30 #################################################################
31 secrets:
32   - uid: 'db-creds'
33     type: basicAuth
34     externalSecret: '{{ tpl (default "" .Values.config.cassandraExternalSecret) . }}'
35     login: '{{ .Values.config.cassandraUsername }}'
36     password: '{{ .Values.config.cassandraPassword }}'
37
38 # application configuration
39 config:
40   cassandraUsername: root
41   cassandraPassword: Aa123456
42 #  cassandraCredsExternalSecret: some secret
43   cassandraJvmOpts: -Xmx2536m -Xms2536m
44
45 # default number of instances
46 replicaCount: 1
47
48 nodeSelector: {}
49
50 affinity: {}
51
52 # probe configuration parameters
53 liveness:
54   initialDelaySeconds: 10
55   periodSeconds: 10
56   # necessary to disable liveness probe when setting breakpoints
57   # in debugger so K8s doesn't restart unresponsive container
58   enabled: true
59
60 readiness:
61   initialDelaySeconds: 10
62   periodSeconds: 10
63
64 ## Persist data to a persitent volume
65 persistence:
66   enabled: true
67
68   ## A manually managed Persistent Volume and Claim
69   ## Requires persistence.enabled: true
70   ## If defined, PVC must be created manually before volume will be bound
71   # existingClaim:
72   volumeReclaimPolicy: Retain
73
74   ## database data Persistent Volume Storage Class
75   ## If defined, storageClassName: <storageClass>
76   ## If set to "-", storageClassName: "", which disables dynamic provisioning
77   ## If undefined (the default) or set to null, no storageClassName spec is
78   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
79   ##   GKE, AWS & OpenStack)
80   ##
81   # storageClass: "-"
82   accessMode: ReadWriteOnce
83   size: 2Gi
84   mountPath: /dockerdata-nfs
85   mountSubPath: portal/cassandra/data
86
87 service:
88   type: ClusterIP
89   name: portal-cassandra
90   portName: portal-cassandra
91   externalPort: 9160
92   internalPort: 9160
93   externalPort2: 7000
94   internalPort2: 7000
95   externalPort3: 7001
96   internalPort3: 7001
97   externalPort4: 7199
98   internalPort4: 7199
99   externalPort5: 9042
100   internalPort5: 9042
101
102 ingress:
103   enabled: false
104
105 # Resource Limit flavor -By Default using small
106 flavor: small
107 # Segregation for Different environment (Small and Large)
108 resources:
109   small:
110     limits:
111       cpu: 500m
112       memory: 3.75Gi
113     requests:
114       cpu: 160m
115       memory: 2.8Gi
116   large:
117     limits:
118       cpu: 4
119       memory: 10Gi
120     requests:
121       cpu: 2
122       memory: 6Gi
123   unlimited: {}