blob: 02263eeced8f799a39a095cf870633a27836eb82 [file] [log] [blame]
Jakub Latusekd4e96f42020-10-21 13:36:29 +02001{{/*
Priyanka Jain1fda9682018-05-09 08:42:50 +00002# Copyright © 2017 Amdocs, Bell Canada
Mukul2b4e7532018-08-03 10:41:29 +00003# Modifications Copyright © 2018 AT&T
Priyanka Jain1fda9682018-05-09 08:42:50 +00004#
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.
Jakub Latusekd4e96f42020-10-21 13:36:29 +020016*/}}
Priyanka Jain1fda9682018-05-09 08:42:50 +000017
Magdalena_Biernacka5a70efa2020-07-10 16:23:35 +020018apiVersion: apps/v1
Priyanka Jain1fda9682018-05-09 08:42:50 +000019kind: StatefulSet
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
Priyanka Jain1fda9682018-05-09 08:42:50 +000027 heritage: {{ .Release.Service }}
28spec:
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" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010038 release: {{ include "common.release" . }}
Priyanka Jain1fda9682018-05-09 08:42:50 +000039 spec:
40 imagePullSecrets:
41 - name: "{{ include "common.namespace" . }}-docker-registry-key"
42 containers:
43 - name: {{ include "common.name" . }}
44 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
45 command: ["/usr/local/bin/docker-entrypoint.sh"]
46 args:
47 - "agent"
48 - "-bootstrap-expect={{ .Values.replicaCount }}"
49 - "-enable-script-checks"
50{{- $fullname := include "common.fullname" . -}}
51{{- $servname := include "common.servicename" . -}}
52{{- range $i,$t := until (int .Values.replicaCount)}}
53 - "-retry-join={{ $fullname }}-{{$i}}.{{ $servname }}"
54{{- end }}
55 - "-client=0.0.0.0"
56 - "-server"
57 - "-ui"
58 ports:
59 - containerPort: {{ .Values.service.internalPort }}
60 - containerPort: {{ .Values.service.internalPort2 }}
61 {{- if eq .Values.liveness.enabled true }}
62 livenessProbe:
63 tcpSocket:
64 port: {{ .Values.service.internalPort }}
65 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
66 periodSeconds: {{ .Values.liveness.periodSeconds }}
67 {{ end -}}
68 readinessProbe:
69 tcpSocket:
70 port: {{ .Values.service.internalPort }}
71 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
72 periodSeconds: {{ .Values.readiness.periodSeconds }}