Grzegorz-Lis | a9270d9 | 2020-11-06 12:37:36 +0000 | [diff] [blame] | 1 | # Copyright (c) 2017 Amdocs, Bell Canada |
| 2 | # Modifications Copyright (c) 2018 AT&T |
Sylvain Desbureaux | 6e41a2c | 2021-02-05 21:33:31 +0100 | [diff] [blame] | 3 | # Modifications Copyright (c) 2020 Nokia, Orange |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 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 |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 22 | persistence: {} |
| 23 | |
| 24 | |
| 25 | # application image |
Grzegorz-Lis | a9270d9 | 2020-11-06 12:37:36 +0000 | [diff] [blame] | 26 | image: bitnami/cassandra:3.11.9-debian-10-r30 |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 27 | pullPolicy: Always |
| 28 | |
Sandeep Shah | 2ffb1ba | 2020-09-01 21:13:16 -0500 | [diff] [blame] | 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 | |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 39 | # application configuration |
| 40 | config: |
| 41 | cassandraUsername: root |
| 42 | cassandraPassword: Aa123456 |
Sandeep Shah | 2ffb1ba | 2020-09-01 21:13:16 -0500 | [diff] [blame] | 43 | # cassandraCredsExternalSecret: some secret |
st782s | 76972f7 | 2018-05-02 17:27:57 -0400 | [diff] [blame] | 44 | cassandraJvmOpts: -Xmx2536m -Xms2536m |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 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 |
Grzegorz-Lis | a9270d9 | 2020-11-06 12:37:36 +0000 | [diff] [blame] | 60 | successThreshold: 1 |
| 61 | failureThreshold: 3 |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 62 | |
| 63 | readiness: |
| 64 | initialDelaySeconds: 10 |
| 65 | periodSeconds: 10 |
Grzegorz-Lis | a9270d9 | 2020-11-06 12:37:36 +0000 | [diff] [blame] | 66 | successThreshold: 1 |
| 67 | failureThreshold: 3 |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 68 | |
Roger Maitland | 28c0645 | 2018-04-10 14:43:57 -0400 | [diff] [blame] | 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: "-" |
Sylvain Desbureaux | cce22e9 | 2019-09-02 14:18:42 +0200 | [diff] [blame] | 87 | accessMode: ReadWriteOnce |
Roger Maitland | 28c0645 | 2018-04-10 14:43:57 -0400 | [diff] [blame] | 88 | size: 2Gi |
| 89 | mountPath: /dockerdata-nfs |
| 90 | mountSubPath: portal/cassandra/data |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 91 | |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 92 | service: |
| 93 | type: ClusterIP |
| 94 | name: portal-cassandra |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 95 | portName: portal-cassandra |
Mandeep Khinda | 1d12388 | 2018-03-27 01:26:59 +0000 | [diff] [blame] | 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 | |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 110 | # Resource Limit flavor -By Default using small |
Nishukumar | 75d48b9 | 2018-09-19 12:11:51 +0000 | [diff] [blame] | 111 | flavor: small |
| 112 | # Segregation for Different environment (Small and Large) |
| 113 | resources: |
| 114 | small: |
| 115 | limits: |
Sylvain Desbureaux | 22b89c7 | 2019-10-29 12:00:36 +0100 | [diff] [blame] | 116 | cpu: 500m |
| 117 | memory: 3.75Gi |
Nishukumar | 75d48b9 | 2018-09-19 12:11:51 +0000 | [diff] [blame] | 118 | requests: |
Sylvain Desbureaux | 22b89c7 | 2019-10-29 12:00:36 +0100 | [diff] [blame] | 119 | cpu: 160m |
Sylvain Desbureaux | 6e41a2c | 2021-02-05 21:33:31 +0100 | [diff] [blame] | 120 | memory: 3.1Gi |
Nishukumar | 75d48b9 | 2018-09-19 12:11:51 +0000 | [diff] [blame] | 121 | large: |
| 122 | limits: |
| 123 | cpu: 4 |
| 124 | memory: 10Gi |
| 125 | requests: |
| 126 | cpu: 2 |
| 127 | memory: 6Gi |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 128 | unlimited: {} |
Sylvain Desbureaux | c23aa42 | 2021-02-15 15:28:19 +0100 | [diff] [blame] | 129 | |
| 130 | heap: |
| 131 | # Heap size is tightly correlated to RAM limits. |
| 132 | # If limit > 8G, Cassandra should define itself the best value. |
| 133 | # If not, you must set up it in a coherent way with limits set |
| 134 | # Refer to https://docs.datastax.com/en/cassandra-oss/3.0/cassandra/operations/opsTuneJVM.html#Determiningtheheapsize |
| 135 | # for more informations. |
| 136 | small: |
| 137 | max: 3G |
| 138 | new: 100M |
| 139 | large: {} |
| 140 | unlimited: {} |