[DCAEGEN2] Update cm-container and consul-loader
[oom.git] / kubernetes / portal / components / portal-cassandra / values.yaml
1 # Copyright (c) 2017 Amdocs, Bell Canada
2 # Modifications Copyright (c) 2018 AT&T
3 # Modifications Copyright (c) 2020 Nokia
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Default values for mariadb.
18 # This is a YAML-formatted file.
19 # Declare variables to be passed into your templates.
20 global: # global defaults
21   nodePortPrefix: 302
22   persistence: {}
23
24
25 # application image
26 image: bitnami/cassandra:3.11.9-debian-10-r30
27 pullPolicy: Always
28
29 #################################################################
30 # Secrets metaconfig
31 #################################################################
32 secrets:
33   - uid: 'db-creds'
34     type: basicAuth
35     externalSecret: '{{ tpl (default "" .Values.config.cassandraExternalSecret) . }}'
36     login: '{{ .Values.config.cassandraUsername }}'
37     password: '{{ .Values.config.cassandraPassword }}'
38
39 # application configuration
40 config:
41   cassandraUsername: root
42   cassandraPassword: Aa123456
43 #  cassandraCredsExternalSecret: some secret
44   cassandraJvmOpts: -Xmx2536m -Xms2536m
45
46 # default number of instances
47 replicaCount: 1
48
49 nodeSelector: {}
50
51 affinity: {}
52
53 # probe configuration parameters
54 liveness:
55   initialDelaySeconds: 10
56   periodSeconds: 10
57   # necessary to disable liveness probe when setting breakpoints
58   # in debugger so K8s doesn't restart unresponsive container
59   enabled: true
60   successThreshold: 1
61   failureThreshold: 3
62
63 readiness:
64   initialDelaySeconds: 10
65   periodSeconds: 10
66   successThreshold: 1
67   failureThreshold: 3
68
69 ## Persist data to a persitent volume
70 persistence:
71   enabled: true
72
73   ## A manually managed Persistent Volume and Claim
74   ## Requires persistence.enabled: true
75   ## If defined, PVC must be created manually before volume will be bound
76   # existingClaim:
77   volumeReclaimPolicy: Retain
78
79   ## database data Persistent Volume Storage Class
80   ## If defined, storageClassName: <storageClass>
81   ## If set to "-", storageClassName: "", which disables dynamic provisioning
82   ## If undefined (the default) or set to null, no storageClassName spec is
83   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
84   ##   GKE, AWS & OpenStack)
85   ##
86   # storageClass: "-"
87   accessMode: ReadWriteOnce
88   size: 2Gi
89   mountPath: /dockerdata-nfs
90   mountSubPath: portal/cassandra/data
91
92 service:
93   type: ClusterIP
94   name: portal-cassandra
95   portName: portal-cassandra
96   externalPort: 9160
97   internalPort: 9160
98   externalPort2: 7000
99   internalPort2: 7000
100   externalPort3: 7001
101   internalPort3: 7001
102   externalPort4: 7199
103   internalPort4: 7199
104   externalPort5: 9042
105   internalPort5: 9042
106
107 ingress:
108   enabled: false
109
110 # Resource Limit flavor -By Default using small
111 flavor: small
112 # Segregation for Different environment (Small and Large)
113 resources:
114   small:
115     limits:
116       cpu: 500m
117       memory: 3.75Gi
118     requests:
119       cpu: 160m
120       memory: 2.8Gi
121   large:
122     limits:
123       cpu: 4
124       memory: 10Gi
125     requests:
126       cpu: 2
127       memory: 6Gi
128   unlimited: {}