blob: c16fdb750ac6e56a212de5b65a349623197645f7 [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 }}
54 env:
55 - name: ENVNAME
56 value: {{ .Values.global.env.name }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000057 - name: RELEASE
58 value: {{ .Values.config.release }}
59 - name: MAX_HEAP_SIZE
60 value: {{ .Values.config.maxHeapSize }}
61 - name: HEAP_NEWSIZE
62 value: {{ .Values.config.heapNewSize }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000063 - name: HOST_IP
64 valueFrom:
65 fieldRef:
66 fieldPath: status.podIP
67 - name: CS_PASSWORD
68 valueFrom:
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000069 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: cs_password}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000070 volumeMounts:
71 - name: {{ include "common.fullname" . }}-data
72 mountPath: /var/lib/cassandra/
73 - name: {{ include "common.fullname" . }}-environments
74 mountPath: /root/chef-solo/environments/
75 - name: {{ include "common.fullname" . }}-localtime
76 mountPath: /etc/localtime
77 readOnly: true
Mandeep Khindaa1047f42018-03-22 02:12:15 +000078 resources:
79{{ toYaml .Values.resources | indent 12 }}
80 {{- if .Values.nodeSelector }}
81 nodeSelector:
82{{ toYaml .Values.nodeSelector | indent 10 }}
83 {{- end -}}
84 {{- if .Values.affinity }}
85 affinity:
86{{ toYaml .Values.affinity | indent 10 }}
87 {{- end }}
88 volumes:
Mandeep Khinda403c1c12018-04-19 23:15:43 +000089 - name: {{ include "common.fullname" . }}-localtime
90 hostPath:
91 path: /etc/localtime
Mandeep Khinda403c1c12018-04-19 23:15:43 +000092 - name: {{ include "common.fullname" . }}-data
Mandeep Khindaa1047f42018-03-22 02:12:15 +000093 {{- if .Values.persistence.enabled }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000094 persistentVolumeClaim:
95 claimName: {{ include "common.fullname" . }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000096 {{- else }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000097 emptyDir: {}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000098 {{- end }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000099 - name: {{ include "common.fullname" . }}-environments
100 configMap:
101 name: {{ .Release.Name }}-sdc-environments-configmap
102 defaultMode: 0755
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000103 imagePullSecrets:
BorislavG1ffbd992018-04-24 07:56:27 +0000104 - name: "{{ include "common.namespace" . }}-docker-registry-key"