blob: 0dfc61afb5a6ea3648774818c151f1145333b3e0 [file] [log] [blame]
priyanshu3af9db62018-08-16 16:23:52 +05301# Copyright © 2018 Amdocs, 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
15apiVersion: 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-wfd-be"
40 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
46 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
47 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48 containers:
49 - name: {{ include "common.name" . }}
50 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 ports:
53 - containerPort: {{ .Values.service.internalPort }}
54 {{ if .Values.liveness.enabled }}
55 livenessProbe:
56 tcpSocket:
57 port: {{ .Values.service.internalPort }}
58 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
59 periodSeconds: {{ .Values.liveness.periodSeconds }}
60 {{ end }}
61 readinessProbe:
62 tcpSocket:
63 port: {{ .Values.service.internalPort }}
64 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
65 periodSeconds: {{ .Values.readiness.periodSeconds }}
66 env:
67 - name: ENVNAME
68 value: {{ .Values.global.env.name }}
69 - name: JAVA_OPTIONS
70 value: {{ .Values.config.javaOptions }}
71 - name: BACKEND
72 value: {{ .Values.config.backendServerURL }}
73 volumeMounts:
74 - name: {{ include "common.fullname" . }}-localtime
75 mountPath: /etc/localtime
76 readOnly: true
77 resources:
78{{ toYaml .Values.resources | indent 12 }}
79 {{- if .Values.nodeSelector }}
80 nodeSelector:
81{{ toYaml .Values.nodeSelector | indent 10 }}
82 {{- end -}}
83 {{- if .Values.affinity }}
84 affinity:
85{{ toYaml .Values.affinity | indent 10 }}
86 {{- end }}
87
88 # side car containers
89 - name: {{ include "common.name" . }}-filebeat-onap
90 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
91 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
92 volumeMounts:
93 - name: {{ include "common.fullname" . }}-filebeat-conf
94 mountPath: /usr/share/filebeat/filebeat.yml
95 subPath: filebeat.yml
96 - name: {{ include "common.fullname" . }}-logs
97 mountPath: /var/log/onap
98 - name: {{ include "common.fullname" . }}-data-filebeat
99 mountPath: /usr/share/filebeat/data
100 volumes:
101 - name: {{ include "common.fullname" . }}-localtime
102 hostPath:
103 path: /etc/localtime
104 - name: {{ include "common.fullname" . }}-filebeat-conf
105 configMap:
106 name: {{ .Release.Name }}-sdc-filebeat-configmap
107 - name: {{ include "common.fullname" . }}-data-filebeat
108 emptyDir: {}
109 - name: {{ include "common.fullname" . }}-logs
110 emptyDir: {}
111 imagePullSecrets:
112 - name: "{{ include "common.namespace" . }}-docker-registry-key"