blob: bce316354b1324e2f08c58b47eda05882331f45e [file] [log] [blame]
Priyanka Jain1fda9682018-05-09 08:42:50 +00001# Copyright © 2017 Amdocs, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15apiVersion: apps/v1beta1
16kind: StatefulSet
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
26 serviceName: {{ include "common.servicename" . }}
27 replicas: {{ .Values.replicaCount }}
28 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
35 release: {{ .Release.Name }}
36 spec:
37 imagePullSecrets:
38 - name: "{{ include "common.namespace" . }}-docker-registry-key"
39 containers:
40 - name: {{ include "common.name" . }}
41 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
42 command: ["/usr/local/bin/docker-entrypoint.sh"]
43 args:
44 - "agent"
45 - "-bootstrap-expect={{ .Values.replicaCount }}"
46 - "-enable-script-checks"
47{{- $fullname := include "common.fullname" . -}}
48{{- $servname := include "common.servicename" . -}}
49{{- range $i,$t := until (int .Values.replicaCount)}}
50 - "-retry-join={{ $fullname }}-{{$i}}.{{ $servname }}"
51{{- end }}
52 - "-client=0.0.0.0"
53 - "-server"
54 - "-ui"
55 ports:
56 - containerPort: {{ .Values.service.internalPort }}
57 - containerPort: {{ .Values.service.internalPort2 }}
58 {{- if eq .Values.liveness.enabled true }}
59 livenessProbe:
60 tcpSocket:
61 port: {{ .Values.service.internalPort }}
62 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
63 periodSeconds: {{ .Values.liveness.periodSeconds }}
64 {{ end -}}
65 readinessProbe:
66 tcpSocket:
67 port: {{ .Values.service.internalPort }}
68 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69 periodSeconds: {{ .Values.readiness.periodSeconds }}