blob: bc0eac7b880e3e8ec64db04684ed6d256b51edec [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 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
vaibhav_16decf67e4182018-03-19 05:45:47 +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 - command:
35 - /root/ready.py
36 args:
37 - --container-name
38 - {{ .Values.mariadb.nameOverride }}
39 env:
40 - name: NAMESPACE
41 valueFrom:
42 fieldRef:
43 apiVersion: v1
44 fieldPath: metadata.namespace
45 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 name: {{ include "common.name" . }}-readiness
48 containers:
ac2550de009892018-05-24 15:47:05 +020049 # side car containers
50 - name: {{ include "common.name" . }}-filebeat-onap
51 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
52 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 volumeMounts:
54 - name: {{ include "common.fullname" . }}-filebeat-conf
55 mountPath: /usr/share/filebeat/filebeat.yml
56 subPath: filebeat.yml
57 - name: {{ include "common.fullname" . }}-data-filebeat
Michael O'Brienefcadf52018-07-23 17:31:05 -040058 mountPath: /usr/share/filebeat/data
ac2550de009892018-05-24 15:47:05 +020059 - name: {{ include "common.fullname" . }}-logs
60 mountPath: /var/log/onap
vaibhav_16decf67e4182018-03-19 05:45:47 +000061 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000062 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
vaibhav_16decf67e4182018-03-19 05:45:47 +000063 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ac2550de009892018-05-24 15:47:05 +020064 args:
65 - "-Dcom.att.eelf.logging.file=file:/opt/clamp/logback.xml"
66 - ""
vaibhav_16decf67e4182018-03-19 05:45:47 +000067 ports:
68 - containerPort: {{ .Values.service.internalPort }}
69 # disable liveness probe when breakpoints set in debugger
70 # so K8s doesn't restart unresponsive container
71 {{- if eq .Values.liveness.enabled true }}
72 livenessProbe:
73 tcpSocket:
74 port: {{ .Values.service.internalPort }}
75 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
76 periodSeconds: {{ .Values.liveness.periodSeconds }}
77 {{ end -}}
78 readinessProbe:
79 tcpSocket:
80 port: {{ .Values.service.internalPort }}
81 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
82 periodSeconds: {{ .Values.readiness.periodSeconds }}
ac25507895b2c2018-05-16 14:31:23 +020083 volumeMounts:
ac2550de009892018-05-24 15:47:05 +020084 - name: {{ include "common.fullname" . }}-logs
85 mountPath: /var/log/onap
ac25507895b2c2018-05-16 14:31:23 +020086 - mountPath: /opt/clamp/sdc-controllers-config.json
87 name: {{ include "common.fullname" . }}-config
88 subPath: sdc-controllers-config.json
ac2550de009892018-05-24 15:47:05 +020089 - mountPath: /opt/clamp/logback.xml
90 name: {{ include "common.fullname" . }}-config
91 subPath: logback.xml
vaibhav_16decf67e4182018-03-19 05:45:47 +000092 env:
93 - name: SPRING_APPLICATION_JSON
94 valueFrom:
95 configMapKeyRef:
96 name: {{ template "common.fullname" . }}
97 key: spring_application_json
98 resources:
99{{ toYaml .Values.resources | indent 12 }}
100 {{- if .Values.nodeSelector }}
101 nodeSelector:
102{{ toYaml .Values.nodeSelector | indent 10 }}
103 {{- end -}}
104 {{- if .Values.affinity }}
105 affinity:
106{{ toYaml .Values.affinity | indent 10 }}
107 {{- end }}
ac25507895b2c2018-05-16 14:31:23 +0200108 volumes:
109 - name: {{ include "common.fullname" . }}-config
110 configMap:
111 name: {{ include "common.fullname" . }}
112 items:
113 - key: sdc-controllers-config.json
114 path: sdc-controllers-config.json
ac2550de009892018-05-24 15:47:05 +0200115 - key: logback.xml
116 path: logback.xml
117 - name: {{ include "common.fullname" . }}-filebeat-conf
118 configMap:
119 name: {{ .Release.Name }}-clamp-filebeat-configmap
120 - name: {{ include "common.fullname" . }}-data-filebeat
121 emptyDir: {}
122 - name: {{ include "common.fullname" . }}-logs
123 emptyDir: {}
vaibhav_16decf67e4182018-03-19 05:45:47 +0000124 imagePullSecrets:
125 - name: "{{ include "common.namespace" . }}-docker-registry-key"