blob: 86cf46751e1c587ee50e540e683a3e65d1127f64 [file] [log] [blame]
prpatelafedf2c2018-09-07 15:28:38 +00001# Copyright © 2018 Amdocs, AT&T, 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
15apiVersion: apps/v1beta1
16kind: StatefulSet
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000026 selector:
27 matchLabels:
28 app: {{ include "common.name" . }}
29 release: {{ .Release.Name }}
prpatelafedf2c2018-09-07 15:28:38 +000030 serviceName: {{ include "common.servicename" . }}
31 replicas: {{ .Values.replicaCount }}
32 podManagementPolicy: {{ .Values.podManagementPolicy }}
33 updateStrategy:
34 type: {{ .Values.updateStrategy.type }}
35 template:
36 metadata:
37 labels:
38 app: {{ include "common.name" . }}
39 release: {{ .Release.Name }}
40 name: {{ include "common.name" . }}
41 spec:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000042 hostNetwork: {{ .Values.hostNetwork }}
prpatelafedf2c2018-09-07 15:28:38 +000043 containers:
44 - name: {{ include "common.name" . }}
45 image: {{ .Values.image }}
46 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 ports:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000048 {{- range $index, $ports := .Values.service.ports }}
49 - containerPort: {{ $ports.port }}
50 {{- end }}
prpatelafedf2c2018-09-07 15:28:38 +000051 volumeMounts:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000052 - name: cassandra-data
prpatelafedf2c2018-09-07 15:28:38 +000053 mountPath: /var/lib/cassandra
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000054 - name: localtime
55 mountPath: /etc/localtime
56 readOnly: true
57 {{- range $key, $value := .Values.configOverrides }}
58 - name: cassandra-config-{{ $key | replace "." "-" }}
59 mountPath: /etc/cassandra/{{ $key }}
60 subPath: {{ $key }}
61 {{- end }}
prpatelafedf2c2018-09-07 15:28:38 +000062 {{- if eq .Values.liveness.enabled true }}
63 livenessProbe:
64 exec:
65 command:
66 - /bin/bash
67 - -c
68 - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }'
69 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
70 periodSeconds: {{ .Values.liveness.periodSeconds }}
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000071 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
72 successThreshold: {{ .Values.liveness.successThreshold }}
73 failureThreshold: {{ .Values.liveness.failureThreshold }}
prpatelafedf2c2018-09-07 15:28:38 +000074 {{ end -}}
75 readinessProbe:
76 exec:
77 command:
78 - /bin/bash
79 - -c
80 - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }'
81 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000082 periodSeconds: {{ .Values.readiness.periodSeconds }}
83 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
84 successThreshold: {{ .Values.readiness.successThreshold }}
85 failureThreshold: {{ .Values.readiness.failureThreshold }}
prpatelafedf2c2018-09-07 15:28:38 +000086 env:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +000087 {{- $seed_size := default 1 .Values.replicaCount | int -}}
88 {{- $global := . }}
89 - name: CASSANDRA_SEEDS
90 {{- if .Values.hostNetwork }}
91 value: {{ required "You must fill \".Values.config.seeds\" with list of Cassandra seeds when hostNetwork is set to true" .Values.config.seeds | quote }}
92 {{- else }}
93 value: "{{- range $i, $e := until $seed_size }}{{ template "common.fullname" $global }}-{{ $i }}.{{ template "common.servicename" $global }}.{{ $global.Release.Namespace }}.svc.{{ $global.Values.config.cluster_domain }}{{- if (lt ( add1 $i ) $seed_size ) }},{{- end }}{{- end }}"
94 {{- end }}
prpatelafedf2c2018-09-07 15:28:38 +000095 - name: MAX_HEAP_SIZE
96 value: {{ .Values.config.heap.max }}
97 - name: HEAP_NEWSIZE
98 value: {{ .Values.config.heap.min }}
99 - name: JVM_OPTS
100 value: {{ .Values.config.jvmOpts | quote }}
101 - name: CASSANDRA_CLUSTER_NAME
102 value: {{ .Values.config.clusterName | quote }}
103 - name: CASSANDRA_DC
104 value: {{ .Values.config.dataCenter | quote }}
105 - name: CASSANDRA_RACK
106 value: {{ .Values.config.rackName | quote }}
107 - name: CASSANDRA_AUTO_BOOTSTRAP
108 value: {{ .Values.config.autoBootstrap | quote }}
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +0000109 - name: CASSANDRA_START_RPC
110 value: {{ default "true" .Values.config.start_rpc | quote }}
111 - name: CASSANDRA_ENDPOINT_SNITCH
112 value: {{ default "SimpleSnitch" .Values.config.endpoint_snitch | quote }}
prpatelafedf2c2018-09-07 15:28:38 +0000113 - name: POD_IP
114 valueFrom:
115 fieldRef:
116 fieldPath: status.podIP
prpatelafedf2c2018-09-07 15:28:38 +0000117 lifecycle:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +0000118 preStop:
prpatelafedf2c2018-09-07 15:28:38 +0000119 exec:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +0000120 {{- if not .Values.persistence.enabled }}
121 command: ["/bin/sh", "-c", "exec nodetool decommission"]
122 {{- else }}
123 command: ["/bin/sh", "-c", "PID=$(pidof java) && kill $PID && while ps -p $PID > /dev/null; do sleep 1; done"]
124 {{- end }}
prpatelafedf2c2018-09-07 15:28:38 +0000125 resources:
126{{ toYaml .Values.resources | indent 10 }}
127 {{- if .Values.nodeSelector }}
128 nodeSelector:
129{{ toYaml .Values.nodeSelector | indent 8 }}
130 {{- end -}}
131 {{- if .Values.affinity }}
132 affinity:
133{{ toYaml .Values.affinity | indent 8 }}
134 {{- end }}
135 volumes:
136 - name: localtime
137 hostPath:
138 path: /etc/localtime
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +0000139 {{- range $key, $value := .Values.configOverrides }}
140 - name: cassandra-config-{{ $key | replace "." "-" }}
prpatelafedf2c2018-09-07 15:28:38 +0000141 configMap:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +0000142 name: {{ include "common.fullname" . }}-configOverrides
143 {{- end }}
prpatelafedf2c2018-09-07 15:28:38 +0000144 {{- if not .Values.persistence.enabled }}
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +0000145 - name: cassandra-data
prpatelafedf2c2018-09-07 15:28:38 +0000146 emptyDir: {}
147 {{- else }}
148 volumeClaimTemplates:
149 - metadata:
Mahendra Raghuwanshif59d9252019-02-20 06:54:46 +0000150 name: cassandra-data
prpatelafedf2c2018-09-07 15:28:38 +0000151 labels:
152 app: {{ template "common.fullname" . }}
prpatelafedf2c2018-09-07 15:28:38 +0000153 release: "{{ .Release.Name }}"
154 heritage: "{{ .Release.Service }}"
155 annotations:
156 volume.beta.kubernetes.io/storage-class: {{ .Values.persistence.storageClass }}
157 spec:
158 accessModes:
159 - {{ .Values.persistence.accessMode | quote }}
160 resources:
161 requests:
162 storage: {{ .Values.persistence.size | quote }}
Alexis de Talhouët634b4552018-10-28 21:56:33 -0400163 selector:
164 matchLabels:
165 release: "{{ .Release.Name }}"
prpatelafedf2c2018-09-07 15:28:38 +0000166 {{- end }}