blob: ff11da309aaf4471a2d17e679e16760498ab3f60 [file] [log] [blame]
Jakub Latusek3659d9f2020-09-14 16:21:55 +02001{{/*
Ritu Sood23699102019-04-24 23:06:46 +00002# Copyright © 2019 Intel Corporation Inc
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.
Jakub Latusek3659d9f2020-09-14 16:21:55 +020015*/}}
milaszkic03c3182020-07-07 12:13:44 +000016apiVersion: apps/v1
Ritu Sood23699102019-04-24 23:06:46 +000017kind: StatefulSet
18metadata:
Kiran Kamineni56c00a82019-05-20 17:19:40 -070019 name: {{ include "common.fullname" . }}
Ritu Sood23699102019-04-24 23:06:46 +000020 labels:
21 heritage: "{{ .Release.Service }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010022 release: "{{ include "common.release" . }}"
Ritu Sood23699102019-04-24 23:06:46 +000023 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Kiran Kamineni56c00a82019-05-20 17:19:40 -070024 app: {{ include "common.name" . }}
Ritu Sood23699102019-04-24 23:06:46 +000025spec:
Kiran Kamineni56c00a82019-05-20 17:19:40 -070026 serviceName: {{ include "common.servicename" .}}
Ritu Sood23699102019-04-24 23:06:46 +000027 replicas: {{ .Values.replicaCount }}
milaszkic03c3182020-07-07 12:13:44 +000028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
Ritu Sood23699102019-04-24 23:06:46 +000031 template:
32 metadata:
33 labels:
34 heritage: "{{ .Release.Service }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: "{{ include "common.release" . }}"
Ritu Sood23699102019-04-24 23:06:46 +000036 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
37 app: {{ include "common.name" . }}
38 spec:
39{{- if .Values.affinity }}
40 affinity:
41{{ toYaml .Values.affinity | indent 8 }}
42{{- end }}
43{{- if .Values.nodeSelector }}
44 nodeSelector:
45{{ toYaml .Values.nodeSelector | indent 8 }}
46{{- end }}
47{{- if .Values.tolerations }}
48 tolerations:
49{{ toYaml .Values.tolerations | indent 8 }}
50{{- end }}
andreas-geisslerf84cccd2021-07-07 15:40:41 +020051 imagePullSecrets:
52 - name: "{{ include "common.namespace" . }}-docker-registry-key"
Ritu Sood23699102019-04-24 23:06:46 +000053 containers:
krishnaa96544863d2021-05-11 18:29:49 +053054 - name: {{ include "common.name" . }}
Sylvain Desbureauxc9f55332020-11-19 17:10:36 +010055 image: {{ include "repositoryGenerator.googleK8sRepository" . }}/{{ .Values.image }}
Ritu Sood23699102019-04-24 23:06:46 +000056 imagePullPolicy: "{{ .Values.pullPolicy }}"
57 ports:
58 - containerPort: {{ .Values.service.peerInternalPort }}
59 name: {{ .Values.service.peerPortName }}
60 - containerPort: {{ .Values.service.clientInternalPort }}
61 name: {{ .Values.service.clientPortName }}
62 {{- if eq .Values.liveness.enabled true }}
63 livenessProbe:
Kiran Kaminenif02245c2019-05-28 13:19:32 -070064 tcpSocket:
65 port: {{ .Values.service.clientInternalPort }}
66 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
67 periodSeconds: {{ .Values.liveness.periodSeconds }}
68 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
69 {{ end -}}
Ritu Sood23699102019-04-24 23:06:46 +000070 resources:
71{{ include "common.resources" . | indent 10 }}
72 env:
73 - name: INITIAL_CLUSTER_SIZE
74 value: {{ .Values.replicaCount | quote }}
75 - name: SET_NAME
Kiran Kamineni56c00a82019-05-20 17:19:40 -070076 value: {{ include "common.fullname" . }}
77 - name: SERVICE_NAME
Sylvain Desbureauxc991f0b2021-10-29 15:51:58 +020078 value: {{ include "common.servicename" . }}.{{ include "common.namespace" . }}.svc.{{ .Values.global.clusterName }}
Ritu Sood23699102019-04-24 23:06:46 +000079{{- if .Values.extraEnv }}
80{{ toYaml .Values.extraEnv | indent 8 }}
81{{- end }}
82 lifecycle:
83 preStop:
84 exec:
85 command:
86 - "/bin/sh"
87 - "-ec"
88 - |
89 EPS=""
90 for i in $(seq 0 $((${INITIAL_CLUSTER_SIZE} - 1))); do
Kiran Kamineni56c00a82019-05-20 17:19:40 -070091 EPS="${EPS}${EPS:+,}http://${SET_NAME}-${i}.${SERVICE_NAME}:2379"
Ritu Sood23699102019-04-24 23:06:46 +000092 done
93
94 HOSTNAME=$(hostname)
95
96 member_hash() {
Kiran Kamineni56c00a82019-05-20 17:19:40 -070097 etcdctl member list | grep http://${HOSTNAME}.${SERVICE_NAME}:2380 | cut -d':' -f1 | cut -d'[' -f1
Ritu Sood23699102019-04-24 23:06:46 +000098 }
99
100 SET_ID=${HOSTNAME##*[^0-9]}
101
102 if [ "${SET_ID}" -ge ${INITIAL_CLUSTER_SIZE} ]; then
103 echo "Removing ${HOSTNAME} from etcd cluster"
104 ETCDCTL_ENDPOINT=${EPS} etcdctl member remove $(member_hash)
105 if [ $? -eq 0 ]; then
106 # Remove everything otherwise the cluster will no longer scale-up
107 rm -rf /var/run/etcd/*
108 fi
109 fi
110 command:
111 - "/bin/sh"
112 - "-ec"
113 - |
114 HOSTNAME=$(hostname)
115
116 # store member id into PVC for later member replacement
117 collect_member() {
118 while ! etcdctl member list &>/dev/null; do sleep 1; done
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700119 etcdctl member list | grep http://${HOSTNAME}.${SERVICE_NAME}:2380 | cut -d':' -f1 | cut -d'[' -f1 > /var/run/etcd/member_id
Ritu Sood23699102019-04-24 23:06:46 +0000120 exit 0
121 }
122
123 eps() {
124 EPS=""
125 for i in $(seq 0 $((${INITIAL_CLUSTER_SIZE} - 1))); do
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700126 EPS="${EPS}${EPS:+,}http://${SET_NAME}-${i}.${SERVICE_NAME}:2379"
Ritu Sood23699102019-04-24 23:06:46 +0000127 done
128 echo ${EPS}
129 }
130
131 member_hash() {
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700132 etcdctl member list | grep http://${HOSTNAME}.${SERVICE_NAME}:2380 | cut -d':' -f1 | cut -d'[' -f1
Ritu Sood23699102019-04-24 23:06:46 +0000133 }
134
135 # we should wait for other pods to be up before trying to join
136 # otherwise we got "no such host" errors when trying to resolve other members
137 for i in $(seq 0 $((${INITIAL_CLUSTER_SIZE} - 1))); do
Konrad Bańkae1d62ce2021-01-25 07:44:49 +0100138 if [ "${SET_NAME}-${i}" == "${HOSTNAME}" ]; then
139 echo "Skipping self-checking"
140 continue
141 fi
Ritu Sood23699102019-04-24 23:06:46 +0000142 while true; do
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700143 echo "Waiting for ${SET_NAME}-${i}.${SERVICE_NAME} to come up"
144 ping -W 1 -c 1 ${SET_NAME}-${i}.${SERVICE_NAME} > /dev/null && break
Ritu Sood23699102019-04-24 23:06:46 +0000145 sleep 1s
146 done
147 done
148
149 # re-joining after failure?
Kiran Kaminenif02245c2019-05-28 13:19:32 -0700150 if [[ -e /var/run/etcd/default.etcd && -f /var/run/etcd/member_id ]]; then
Ritu Sood23699102019-04-24 23:06:46 +0000151 echo "Re-joining etcd member"
152 member_id=$(cat /var/run/etcd/member_id)
153
154 # re-join member
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700155 ETCDCTL_ENDPOINT=$(eps) etcdctl member update ${member_id} http://${HOSTNAME}.${SERVICE_NAME}:2380 | true
Ritu Sood23699102019-04-24 23:06:46 +0000156 exec etcd --name ${HOSTNAME} \
157 --listen-peer-urls http://0.0.0.0:2380 \
158 --listen-client-urls http://0.0.0.0:2379\
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700159 --advertise-client-urls http://${HOSTNAME}.${SERVICE_NAME}:2379 \
Ritu Sood23699102019-04-24 23:06:46 +0000160 --data-dir /var/run/etcd/default.etcd
161 fi
162
163 # etcd-SET_ID
164 SET_ID=${HOSTNAME##*[^0-9]}
165
166 # adding a new member to existing cluster (assuming all initial pods are available)
167 if [ "${SET_ID}" -ge ${INITIAL_CLUSTER_SIZE} ]; then
168 export ETCDCTL_ENDPOINT=$(eps)
169
170 # member already added?
171 MEMBER_HASH=$(member_hash)
172 if [ -n "${MEMBER_HASH}" ]; then
173 # the member hash exists but for some reason etcd failed
174 # as the datadir has not be created, we can remove the member
175 # and retrieve new hash
176 etcdctl member remove ${MEMBER_HASH}
177 fi
178
179 echo "Adding new member"
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700180 etcdctl member add ${HOSTNAME} http://${HOSTNAME}.${SERVICE_NAME}:2380 | grep "^ETCD_" > /var/run/etcd/new_member_envs
Ritu Sood23699102019-04-24 23:06:46 +0000181
182 if [ $? -ne 0 ]; then
183 echo "Exiting"
184 rm -f /var/run/etcd/new_member_envs
185 exit 1
186 fi
187
188 cat /var/run/etcd/new_member_envs
Guillaume Lambert2b6f82c2021-03-02 21:45:00 +0100189 . /var/run/etcd/new_member_envs
Ritu Sood23699102019-04-24 23:06:46 +0000190
191 collect_member &
192
193 exec etcd --name ${HOSTNAME} \
194 --listen-peer-urls http://0.0.0.0:2380 \
195 --listen-client-urls http://0.0.0.0:2379 \
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700196 --advertise-client-urls http://${HOSTNAME}.${SERVICE_NAME}:2379 \
Ritu Sood23699102019-04-24 23:06:46 +0000197 --data-dir /var/run/etcd/default.etcd \
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700198 --initial-advertise-peer-urls http://${HOSTNAME}.${SERVICE_NAME}:2380 \
Ritu Sood23699102019-04-24 23:06:46 +0000199 --initial-cluster ${ETCD_INITIAL_CLUSTER} \
200 --initial-cluster-state ${ETCD_INITIAL_CLUSTER_STATE}
201 fi
202
203 PEERS=""
204 for i in $(seq 0 $((${INITIAL_CLUSTER_SIZE} - 1))); do
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700205 PEERS="${PEERS}${PEERS:+,}${SET_NAME}-${i}=http://${SET_NAME}-${i}.${SERVICE_NAME}:2380"
Ritu Sood23699102019-04-24 23:06:46 +0000206 done
207
208 collect_member &
209
210 # join member
211 exec etcd --name ${HOSTNAME} \
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700212 --initial-advertise-peer-urls http://${HOSTNAME}.${SERVICE_NAME}:2380 \
Ritu Sood23699102019-04-24 23:06:46 +0000213 --listen-peer-urls http://0.0.0.0:2380 \
214 --listen-client-urls http://0.0.0.0:2379 \
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700215 --advertise-client-urls http://${HOSTNAME}.${SERVICE_NAME}:2379 \
Ritu Sood23699102019-04-24 23:06:46 +0000216 --initial-cluster-token etcd-cluster-1 \
217 --initial-cluster ${PEERS} \
218 --initial-cluster-state new \
219 --data-dir /var/run/etcd/default.etcd
220 volumeMounts:
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700221 - name: {{ include "common.fullname" . }}-data
Ritu Sood23699102019-04-24 23:06:46 +0000222 mountPath: /var/run/etcd
223 {{- if .Values.persistence.enabled }}
224 volumeClaimTemplates:
225 - metadata:
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700226 name: {{ include "common.fullname" . }}-data
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100227 labels:
228 name: {{ include "common.fullname" . }}
229 chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100230 release: "{{ include "common.release" . }}"
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100231 heritage: "{{ .Release.Service }}"
Ritu Sood23699102019-04-24 23:06:46 +0000232 spec:
233 accessModes:
Sylvain Desbureauxb7ed2ee2019-11-29 11:35:13 +0100234 - "{{ .Values.persistence.accessMode }}"
235 storageClassName: {{ include "common.storageClass" . }}
Ritu Sood23699102019-04-24 23:06:46 +0000236 resources:
237 requests:
238 # upstream recommended max is 700M
239 storage: "{{ .Values.persistence.storage }}"
Ritu Sood23699102019-04-24 23:06:46 +0000240 {{- else }}
241 volumes:
Kiran Kamineni56c00a82019-05-20 17:19:40 -0700242 - name: {{ include "common.fullname" . }}-data
Ritu Sood23699102019-04-24 23:06:46 +0000243 {{- if .Values.memoryMode }}
244 emptyDir:
245 medium: Memory
246 {{- else }}
247 emptyDir: {}
248 {{- end }}
249 {{- end }}