5bdbe0f23248f9b9074976916d27b7cf0070bc73
[oom.git] / kubernetes / consul / charts / consul-server / templates / statefulset.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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 apiVersion: apps/v1
17 kind: StatefulSet
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   serviceName: {{ include "common.servicename" . }}
28   replicas: {{ .Values.replicaCount }}
29   selector:
30     matchLabels:
31       app: {{ include "common.name" . }}
32   template:
33     metadata:
34       labels:
35         app: {{ include "common.name" . }}
36         release: {{ include "common.release" . }}
37     spec:
38       imagePullSecrets:
39       - name: "{{ include "common.namespace" . }}-docker-registry-key"
40       containers:
41       - name: {{ include "common.name" . }}
42         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
43         command: ["/usr/local/bin/docker-entrypoint.sh"]
44         args:
45         - "agent"
46         - "-bootstrap-expect={{ .Values.replicaCount }}"
47         - "-enable-script-checks"
48 {{- $fullname := include "common.fullname" . -}}
49 {{- $servname := include "common.servicename" . -}}
50 {{- range $i,$t := until (int .Values.replicaCount)}}
51         - "-retry-join={{ $fullname }}-{{$i}}.{{ $servname }}"
52 {{- end }}
53         - "-client=0.0.0.0"
54         - "-server"
55         - "-ui"
56         ports:
57         - containerPort: {{ .Values.service.internalPort }}
58         - containerPort: {{ .Values.service.internalPort2 }}
59         {{- if eq .Values.liveness.enabled true }}
60         livenessProbe:
61           tcpSocket:
62             port: {{ .Values.service.internalPort }}
63           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
64           periodSeconds: {{ .Values.liveness.periodSeconds }}
65         {{ end -}}
66         readinessProbe:
67           tcpSocket:
68             port: {{ .Values.service.internalPort }}
69           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
70           periodSeconds: {{ .Values.readiness.periodSeconds }}