blob: 4731edfebbc15396e660669ff1ca9c138c6bc4cd [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00001# Copyright © 2017 Amdocs, AT&T, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 ZTE
Mandeep Khindab1f9efe2018-03-28 19:01:55 +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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000016apiVersion: extensions/v1beta1
17kind: Deployment
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 "+" "_" }}
24 release: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
32 release: {{ .Release.Name }}
33 spec:
34 containers:
35 - name: {{ include "common.name" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000036 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000037 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
38 ports:
39 - containerPort: {{ .Values.service.internalPort }}
40 - containerPort: {{ .Values.service.internalPort2 }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000041 {{ if eq .Values.liveness.enabled true }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000042 livenessProbe:
43 tcpSocket:
44 port: {{ .Values.service.internalPort }}
45 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
46 periodSeconds: {{ .Values.liveness.periodSeconds }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000047 {{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000048 readinessProbe:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000049 exec:
50 command:
51 - "/var/lib/ready-probe.sh"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000052 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
53 periodSeconds: {{ .Values.readiness.periodSeconds }}
Mukula93baa82018-09-19 15:56:58 +000054 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000055{{ include "common.resources" . | indent 12 }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000056 env:
57 - name: ENVNAME
58 value: {{ .Values.global.env.name }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000059 - name: RELEASE
60 value: {{ .Values.config.release }}
61 - name: MAX_HEAP_SIZE
62 value: {{ .Values.config.maxHeapSize }}
63 - name: HEAP_NEWSIZE
64 value: {{ .Values.config.heapNewSize }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000065 - name: HOST_IP
66 valueFrom:
67 fieldRef:
68 fieldPath: status.podIP
69 - name: CS_PASSWORD
70 valueFrom:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000071 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: cs_password}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000072 volumeMounts:
73 - name: {{ include "common.fullname" . }}-data
74 mountPath: /var/lib/cassandra/
75 - name: {{ include "common.fullname" . }}-environments
76 mountPath: /root/chef-solo/environments/
77 - name: {{ include "common.fullname" . }}-localtime
78 mountPath: /etc/localtime
79 readOnly: true
Mandeep Khindaa1047f42018-03-22 02:12:15 +000080 volumes:
Mandeep Khinda403c1c12018-04-19 23:15:43 +000081 - name: {{ include "common.fullname" . }}-localtime
82 hostPath:
83 path: /etc/localtime
Mandeep Khinda403c1c12018-04-19 23:15:43 +000084 - name: {{ include "common.fullname" . }}-data
Mandeep Khindaa1047f42018-03-22 02:12:15 +000085 {{- if .Values.persistence.enabled }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000086 persistentVolumeClaim:
87 claimName: {{ include "common.fullname" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000088 {{- else }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000089 emptyDir: {}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000090 {{- end }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000091 - name: {{ include "common.fullname" . }}-environments
92 configMap:
93 name: {{ .Release.Name }}-sdc-environments-configmap
94 defaultMode: 0755
Mandeep Khindaa1047f42018-03-22 02:12:15 +000095 imagePullSecrets:
BorislavG1ffbd992018-04-24 07:56:27 +000096 - name: "{{ include "common.namespace" . }}-docker-registry-key"