Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 2b4e753 | 2018-08-03 10:41:29 +0000 | [diff] [blame^] | 2 | # Modifications Copyright © 2018 AT&T |
Priyanka Jain | 1fda968 | 2018-05-09 08:42:50 +0000 | [diff] [blame] | 3 | # |
| 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 | |
| 16 | apiVersion: apps/v1beta1 |
| 17 | kind: StatefulSet |
| 18 | metadata: |
| 19 | name: {{ include "common.fullname" . }} |
| 20 | namespace: {{ include "common.namespace" . }} |
| 21 | labels: |
| 22 | app: {{ include "common.name" . }} |
| 23 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 24 | release: {{ .Release.Name }} |
| 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
| 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" . }} |
| 36 | release: {{ .Release.Name }} |
| 37 | 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 }} |