Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / consul / components / consul-server / templates / statefulset.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
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 "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   serviceName: {{ include "common.servicename" . }}
30   replicas: {{ .Values.replicaCount }}
31   selector:
32     matchLabels:
33       app: {{ include "common.name" . }}
34   template:
35     metadata:
36       labels:
37         app: {{ include "common.name" . }}
38         release: {{ include "common.release" . }}
39     spec:
40       imagePullSecrets:
41       - name: "{{ include "common.namespace" . }}-docker-registry-key"
42       containers:
43       - name: {{ include "common.name" . }}
44         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
45         securityContext:
46           runAsUser: {{ .Values.securityContext.runAsUser }}
47           runAsGroup: {{ .Values.securityContext.runAsGroup }}
48         command: ["/usr/local/bin/docker-entrypoint.sh"]
49         args:
50         - "agent"
51         - "-bootstrap-expect={{ .Values.replicaCount }}"
52         - "-enable-script-checks"
53 {{- $fullname := include "common.fullname" . -}}
54 {{- $servname := include "common.servicename" . -}}
55 {{- range $i,$t := until (int .Values.replicaCount)}}
56         - "-retry-join={{ $fullname }}-{{$i}}.{{ $servname }}"
57 {{- end }}
58         - "-client=0.0.0.0"
59         - "-server"
60         - "-ui"
61         ports:
62         - containerPort: {{ .Values.service.internalPort }}
63         - containerPort: {{ .Values.service.internalPort2 }}
64         {{- if eq .Values.liveness.enabled true }}
65         livenessProbe:
66           tcpSocket:
67             port: {{ .Values.service.internalPort }}
68           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
69           periodSeconds: {{ .Values.liveness.periodSeconds }}
70         {{ end -}}
71         readinessProbe:
72           tcpSocket:
73             port: {{ .Values.service.internalPort }}
74           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
75           periodSeconds: {{ .Values.readiness.periodSeconds }}
76         resources: {{ include "common.resources" . | nindent 10 }}
77       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}