blob: 5fec6c5b7e693e177940199c186a7566aa5d8a64 [file] [log] [blame]
Priyanka Jain1fda9682018-05-09 08:42:50 +00001# Copyright © 2017 Amdocs, Bell Canada
Mukul2b4e7532018-08-03 10:41:29 +00002# Modifications Copyright © 2018 AT&T
Priyanka Jain1fda9682018-05-09 08:42:50 +00003#
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
16apiVersion: apps/v1beta1
17kind: StatefulSet
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
Priyanka Jain1fda9682018-05-09 08:42:50 +000025 heritage: {{ .Release.Service }}
26spec:
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" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010036 release: {{ include "common.release" . }}
Priyanka Jain1fda9682018-05-09 08:42:50 +000037 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 }}