Jakub Latusek | d4e96f4 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 2b4e753 | 2018-08-03 10:41:29 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 AT&T |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 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. |
Jakub Latusek | d4e96f4 | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 16 | */}} |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 17 | |
Magdalena_Biernacka | 5a70efa | 2020-07-10 16:23:35 +0200 | [diff] [blame] | 18 | apiVersion: apps/v1 |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 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 "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 26 | release: {{ include "common.release" . }} |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 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" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 38 | release: {{ include "common.release" . }} |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 39 | 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 }}" |
Krzysztof Opasiak | 4aa45c7 | 2020-11-03 17:16:08 +0100 | [diff] [blame] | 45 | command: |
| 46 | - sh |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 47 | args: |
Krzysztof Opasiak | 4aa45c7 | 2020-11-03 17:16:08 +0100 | [diff] [blame] | 48 | - /usr/local/bin/docker-entrypoint.sh |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 49 | - "agent" |
| 50 | - "-bootstrap-expect={{ .Values.replicaCount }}" |
| 51 | - "-enable-script-checks" |
| 52 | {{- $fullname := include "common.fullname" . -}} |
| 53 | {{- $servname := include "common.servicename" . -}} |
| 54 | {{- range $i,$t := until (int .Values.replicaCount)}} |
| 55 | - "-retry-join={{ $fullname }}-{{$i}}.{{ $servname }}" |
| 56 | {{- end }} |
| 57 | - "-client=0.0.0.0" |
| 58 | - "-server" |
| 59 | - "-ui" |
| 60 | ports: |
| 61 | - containerPort: {{ .Values.service.internalPort }} |
| 62 | - containerPort: {{ .Values.service.internalPort2 }} |
| 63 | {{- if eq .Values.liveness.enabled true }} |
| 64 | livenessProbe: |
| 65 | tcpSocket: |
| 66 | port: {{ .Values.service.internalPort }} |
| 67 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 68 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 69 | {{ end -}} |
| 70 | readinessProbe: |
| 71 | tcpSocket: |
| 72 | port: {{ .Values.service.internalPort }} |
| 73 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 74 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
Sylvain Desbureaux | 5e16401 | 2020-09-23 13:35:31 +0200 | [diff] [blame] | 75 | resources: {{ include "common.resources" . | nindent 10 }} |