blob: 58866495db8cbfe413398f736efbbe6e582ab4dc [file] [log] [blame]
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -04001{{/*
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +01002# Copyright © 2019 AT&T, Amdocs, Bell Canada, Orange
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -04003#
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
18apiVersion: apps/v1beta1
19kind: StatefulSet
20metadata:
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 Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040027 heritage: {{ .Release.Service }}
28spec:
29 podAntiAffinity:
30 preferredDuringSchedulingIgnoredDuringExecution:
31 - weight: 1
32 podAffinityTerm:
33 labelSelector:
34 matchExpressions:
35 - key: app
36 operator: In
37 values:
38 - {{ .Chart.Name }}
39 topologyKey: kubernetes.io/hostname
40 serviceName: {{ include "common.servicename" . }}
41 replicas: {{ .Values.replicaCount }}
42 podManagementPolicy: {{ .Values.podManagementPolicy }}
43 updateStrategy:
44 type: {{ .Values.updateStrategy.type }}
45 template:
46 metadata:
47 labels:
48 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010049 release: {{ include "common.release" . }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040050 name: {{ include "common.name" . }}
51 spec:
52 containers:
53 - name: {{ include "common.name" . }}
54 image: "{{ .Values.global.repository }}/{{ .Values.image.image }}"
55 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56 ports:
57 - containerPort: {{ .Values.service.internalPort }}
58 - containerPort: {{ .Values.service.internalPort2 }}
59 - containerPort: {{ .Values.service.internalPort3 }}
60 {{- if eq .Values.liveness.enabled true }}
61 livenessProbe:
62 exec:
63 command:
64 - /bin/bash
65 - -c
66 - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }'
67 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.liveness.periodSeconds }}
69 {{ end -}}
70 readinessProbe:
71 exec:
72 command:
73 - /bin/bash
74 - -c
75 - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }'
76 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
Yang Xuee3fe4d2019-04-12 11:35:17 -040077 periodSeconds: {{ .Values.readiness.periodSeconds }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -040078 lifecycle:
79 preStop:
80 exec:
81 command: ["/bin/sh", "-c", "PID=$(pidof java) && kill $PID && while ps -p $PID > /dev/null; do sleep 1; done"]
82 env:
83 {{- $seed_size := default 1 .Values.replicaCount | int -}}
84 {{- $global := . }}
85 - name: MAX_HEAP_SIZE
86 value: {{ .Values.config.heap.max }}
87 - name: HEAP_NEWSIZE
88 value: {{ .Values.config.heap.min }}
89 - name: CASSANDRA_SEEDS
90 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 }}"
91 - name: JVM_OPTS
92 value: {{ .Values.config.jvmOpts | quote }}
93 - name: CASSANDRA_CLUSTER_NAME
94 value: {{ .Values.config.clusterName | quote }}
95 - name: CASSANDRA_DC
96 value: {{ .Values.config.dataCenter | quote }}
97 - name: CASSANDRA_RACK
98 value: {{ .Values.config.rackName | quote }}
99 - name: CASSANDRA_AUTO_BOOTSTRAP
100 value: {{ .Values.config.autoBootstrap | quote }}
101 - name: POD_IP
102 valueFrom:
103 fieldRef:
104 fieldPath: status.podIP
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100105{{- if .Values.persistence.enabled }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -0400106 volumeMounts:
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100107 - name: {{ include "common.fullname" . }}-data
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -0400108 mountPath: /var/lib/cassandra
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100109{{- end }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -0400110 resources:
Sylvain Desbureaux5ad860d2019-10-29 18:00:15 +0100111{{ include "common.resources" . | indent 12 }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -0400112 volumes:
113 - name: localtime
114 hostPath:
115 path: /etc/localtime
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100116{{- if .Values.persistence.enabled }}
Nelson,Thomas(tn1381)(arthurdent3)4807fdf2018-09-19 16:52:36 -0400117 volumeClaimTemplates:
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100118 - metadata:
119 name: {{ include "common.fullname" . }}-data
120 labels:
121 name: {{ include "common.fullname" . }}
122 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100123 release: "{{ include "common.release" . }}"
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100124 heritage: "{{ .Release.Service }}"
125 spec:
126 accessModes:
127 - {{ .Values.persistence.accessMode | quote }}
128 storageClassName: {{ include "common.storageClass" . }}
129 resources:
130 requests:
131 storage: {{ .Values.persistence.size | quote }}
132{{- end }}
Sylvain Desbureauxb2f054c2018-12-20 11:11:50 +0100133 imagePullSecrets:
134 - name: "{{ include "common.namespace" . }}-docker-registry-key"