blob: d0b8eae76891dd4c12a4be879eb19b33ac9d2df7 [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +00001# Copyright © 2017 Amdocs, AT&T, Bell Canada
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Mandeep Khindaa1047f42018-03-22 02:12:15 +000015apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
31 release: {{ .Release.Name }}
32 spec:
33 initContainers:
34 - name: {{ include "common.name" . }}-readiness
35 command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - "sdc-es"
40 - --container-name
41 - "sdc-cs"
42 env:
43 - name: NAMESPACE
44 valueFrom:
45 fieldRef:
46 apiVersion: v1
47 fieldPath: metadata.namespace
48 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
49 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50 - name: {{ include "common.name" . }}-job-completion
51 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
52 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
53 command:
54 - /root/job_complete.py
55 args:
56 - --job-name
57 - {{ .Release.Name }}-sdc-cs-config-cassandra
58 env:
59 - name: NAMESPACE
60 valueFrom:
61 fieldRef:
62 apiVersion: v1
63 fieldPath: metadata.namespace
64 containers:
65 - name: {{ include "common.name" . }}
66 image: "{{ .Values.global.repository | default .Values.repository }}/{{ .Values.image }}"
67 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68 ports:
69 - containerPort: {{ .Values.service.internalPort }}
70 - containerPort: {{ .Values.service.internalPort2 }}
71 # disable liveness probe when breakpoints set in debugger
72 # so K8s doesn't restart unresponsive container
73 {{- if eq .Values.liveness.enabled true }}
74 livenessProbe:
75 tcpSocket:
76 port: {{ .Values.service.internalPort }}
77 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
78 periodSeconds: {{ .Values.liveness.periodSeconds }}
79 {{ end -}}
80 readinessProbe:
81 tcpSocket:
82 port: {{ .Values.service.internalPort }}
83 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
84 periodSeconds: {{ .Values.readiness.periodSeconds }}
85 env:
86 - name: ENVNAME
87 value: {{ .Values.global.env.name }}
88 - name: JAVA_OPTIONS
Mandeep Khinda403c1c12018-04-19 23:15:43 +000089 value: {{ .Values.config.javaOptions }}
90 - name: cassandra_ssl_enabled
91 value: {{ .Values.config.cassandraSslEnabled | quote }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000092 - name: HOST_IP
93 valueFrom:
94 fieldRef:
95 fieldPath: status.podIP
96 volumeMounts:
97 - name: {{ include "common.fullname" . }}-environments
98 mountPath: /root/chef-solo/environments/
99 - name: {{ include "common.fullname" . }}-localtime
100 mountPath: /etc/localtime
101 readOnly: true
102 - name: {{ include "common.fullname" . }}-logs
103 mountPath: /var/log/onap
104 - name: {{ include "common.fullname" . }}-logback
105 mountPath: /tmp/logback.xml
106 lifecycle:
107 postStart:
108 exec:
109 command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/catalog-be/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
110 resources:
111{{ toYaml .Values.resources | indent 12 }}
112 {{- if .Values.nodeSelector }}
113 nodeSelector:
114{{ toYaml .Values.nodeSelector | indent 10 }}
115 {{- end -}}
116 {{- if .Values.affinity }}
117 affinity:
118{{ toYaml .Values.affinity | indent 10 }}
119 {{- end }}
120
121 # side car containers
122 - name: {{ include "common.name" . }}-filebeat-onap
123 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
124 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
125 volumeMounts:
126 - name: {{ include "common.fullname" . }}-filebeat-conf
127 mountPath: /usr/share/filebeat/filebeat.yml
128 subPath: filebeat.yml
129 - name: {{ include "common.fullname" . }}-logs
130 mountPath: /var/log/onap
131 - name: {{ include "common.fullname" . }}-data-filebeat
132 mountPath: /usr/share/filebeat/data
133 volumes:
Mandeep Khinda403c1c12018-04-19 23:15:43 +0000134 - name: {{ include "common.fullname" . }}-localtime
135 hostPath:
136 path: /etc/localtime
137 - name: {{ include "common.fullname" . }}-filebeat-conf
138 configMap:
139 name: {{ .Release.Name }}-sdc-filebeat-configmap
140 - name: {{ include "common.fullname" . }}-data-filebeat
141 emptyDir: {}
142 - name: {{ include "common.fullname" . }}-logback
143 configMap:
144 name : {{ include "common.fullname" . }}-logging-configmap
145 - name: {{ include "common.fullname" . }}-environments
146 configMap:
147 name: {{ .Release.Name }}-sdc-environments-configmap
148 defaultMode: 0755
149 - name: {{ include "common.fullname" . }}-logs
150 emptyDir: {}
Mandeep Khindaa1047f42018-03-22 02:12:15 +0000151 imagePullSecrets:
152 - name: "{{ include "common.namespace" . }}-docker-registry-key"