Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 1 | {{/* |
Sylvain Desbureaux | b7ed2ee | 2019-11-29 11:35:13 +0100 | [diff] [blame] | 2 | # Copyright © 2019 AT&T, Amdocs, Bell Canada, Orange |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 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 | |
| 17 | |
milaszki | 3f27964 | 2020-07-07 12:38:11 +0000 | [diff] [blame] | 18 | apiVersion: apps/v1 |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 19 | kind: StatefulSet |
| 20 | metadata: |
| 21 | name: {{ include "common.fullname" . }} |
| 22 | namespace: {{ include "common.namespace" . }} |
| 23 | labels: |
| 24 | app: {{ include "common.name" . }} |
| 25 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 29 | serviceName: {{ include "common.servicename" . }} |
| 30 | replicas: {{ .Values.replicaCount }} |
milaszki | 3f27964 | 2020-07-07 12:38:11 +0000 | [diff] [blame] | 31 | selector: |
| 32 | matchLabels: |
| 33 | app: {{ include "common.name" . }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 34 | podManagementPolicy: {{ .Values.podManagementPolicy }} |
| 35 | updateStrategy: |
| 36 | type: {{ .Values.updateStrategy.type }} |
| 37 | template: |
| 38 | metadata: |
| 39 | labels: |
| 40 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 41 | release: {{ include "common.release" . }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 42 | name: {{ include "common.name" . }} |
| 43 | spec: |
andreas-geissler | f84cccd | 2021-07-07 15:40:41 +0200 | [diff] [blame^] | 44 | imagePullSecrets: |
| 45 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 46 | containers: |
| 47 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 589ecb9 | 2020-11-19 17:19:06 +0100 | [diff] [blame] | 48 | image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 49 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 50 | ports: |
| 51 | - containerPort: {{ .Values.service.internalPort }} |
| 52 | - containerPort: {{ .Values.service.internalPort2 }} |
| 53 | - containerPort: {{ .Values.service.internalPort3 }} |
| 54 | {{- if eq .Values.liveness.enabled true }} |
| 55 | livenessProbe: |
| 56 | exec: |
| 57 | command: |
| 58 | - /bin/bash |
| 59 | - -c |
| 60 | - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }' |
| 61 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 62 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
Sylvain Desbureaux | 226cbae | 2021-02-24 10:40:15 +0100 | [diff] [blame] | 63 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
| 64 | successThreshold: {{ .Values.liveness.successThreshold }} |
| 65 | failureThreshold: {{ .Values.liveness.failureThreshold }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 66 | {{ end -}} |
| 67 | readinessProbe: |
| 68 | exec: |
| 69 | command: |
| 70 | - /bin/bash |
| 71 | - -c |
| 72 | - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }' |
| 73 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
Yang Xu | ee3fe4d | 2019-04-12 11:35:17 -0400 | [diff] [blame] | 74 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
Sylvain Desbureaux | 226cbae | 2021-02-24 10:40:15 +0100 | [diff] [blame] | 75 | timeoutSeconds: {{ .Values.readiness.timeoutSeconds }} |
| 76 | successThreshold: {{ .Values.readiness.successThreshold }} |
| 77 | failureThreshold: {{ .Values.readiness.failureThreshold }} |
Sylvain Desbureaux | 60f25bd | 2021-05-05 10:50:55 +0200 | [diff] [blame] | 78 | startupProbe: |
| 79 | exec: |
| 80 | command: |
| 81 | - /bin/bash |
| 82 | - -c |
| 83 | - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }' |
| 84 | initialDelaySeconds: {{ .Values.startup.initialDelaySeconds }} |
| 85 | periodSeconds: {{ .Values.startup.periodSeconds }} |
| 86 | timeoutSeconds: {{ .Values.startup.timeoutSeconds }} |
| 87 | successThreshold: {{ .Values.startup.successThreshold }} |
| 88 | failureThreshold: {{ .Values.startup.failureThreshold }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 89 | lifecycle: |
| 90 | preStop: |
| 91 | exec: |
| 92 | command: ["/bin/sh", "-c", "PID=$(pidof java) && kill $PID && while ps -p $PID > /dev/null; do sleep 1; done"] |
| 93 | env: |
| 94 | {{- $seed_size := default 1 .Values.replicaCount | int -}} |
| 95 | {{- $global := . }} |
| 96 | - name: MAX_HEAP_SIZE |
| 97 | value: {{ .Values.config.heap.max }} |
| 98 | - name: HEAP_NEWSIZE |
| 99 | value: {{ .Values.config.heap.min }} |
| 100 | - name: CASSANDRA_SEEDS |
| 101 | value: "{{- range $i, $e := until $seed_size }}{{ template "common.fullname" $global }}-{{ $i }}.{{ include "common.servicename" $global }}{{- if (lt ( add 1 $i ) $seed_size ) }},{{- end }}{{- end }}" |
| 102 | - name: JVM_OPTS |
| 103 | value: {{ .Values.config.jvmOpts | quote }} |
| 104 | - name: CASSANDRA_CLUSTER_NAME |
| 105 | value: {{ .Values.config.clusterName | quote }} |
| 106 | - name: CASSANDRA_DC |
| 107 | value: {{ .Values.config.dataCenter | quote }} |
| 108 | - name: CASSANDRA_RACK |
| 109 | value: {{ .Values.config.rackName | quote }} |
| 110 | - name: CASSANDRA_AUTO_BOOTSTRAP |
| 111 | value: {{ .Values.config.autoBootstrap | quote }} |
| 112 | - name: POD_IP |
| 113 | valueFrom: |
| 114 | fieldRef: |
| 115 | fieldPath: status.podIP |
Sylvain Desbureaux | b7ed2ee | 2019-11-29 11:35:13 +0100 | [diff] [blame] | 116 | {{- if .Values.persistence.enabled }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 117 | volumeMounts: |
Sylvain Desbureaux | b7ed2ee | 2019-11-29 11:35:13 +0100 | [diff] [blame] | 118 | - name: {{ include "common.fullname" . }}-data |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 119 | mountPath: /var/lib/cassandra |
Sylvain Desbureaux | b7ed2ee | 2019-11-29 11:35:13 +0100 | [diff] [blame] | 120 | {{- end }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 121 | resources: |
Sylvain Desbureaux | 5ad860d | 2019-10-29 18:00:15 +0100 | [diff] [blame] | 122 | {{ include "common.resources" . | indent 12 }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 123 | volumes: |
| 124 | - name: localtime |
| 125 | hostPath: |
| 126 | path: /etc/localtime |
Sylvain Desbureaux | b7ed2ee | 2019-11-29 11:35:13 +0100 | [diff] [blame] | 127 | {{- if .Values.persistence.enabled }} |
Nelson,Thomas(tn1381)(arthurdent3) | 4807fdf | 2018-09-19 16:52:36 -0400 | [diff] [blame] | 128 | volumeClaimTemplates: |
Sylvain Desbureaux | b7ed2ee | 2019-11-29 11:35:13 +0100 | [diff] [blame] | 129 | - metadata: |
| 130 | name: {{ include "common.fullname" . }}-data |
| 131 | labels: |
| 132 | name: {{ include "common.fullname" . }} |
| 133 | chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 134 | release: "{{ include "common.release" . }}" |
Sylvain Desbureaux | b7ed2ee | 2019-11-29 11:35:13 +0100 | [diff] [blame] | 135 | heritage: "{{ .Release.Service }}" |
| 136 | spec: |
| 137 | accessModes: |
| 138 | - {{ .Values.persistence.accessMode | quote }} |
| 139 | storageClassName: {{ include "common.storageClass" . }} |
| 140 | resources: |
| 141 | requests: |
| 142 | storage: {{ .Values.persistence.size | quote }} |
| 143 | {{- end }} |