blob: 4e6d1d13a3c7bab74bc2084f57f3d506f2fc7b08 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +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
vaibhav_16decf67e4182018-03-19 05:45:47 +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 initContainers:
35 - command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - {{ .Values.mariadb.nameOverride }}
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 name: {{ include "common.name" . }}-readiness
49 containers:
ac2550de009892018-05-24 15:47:05 +020050 # side car containers
51 - name: {{ include "common.name" . }}-filebeat-onap
52 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 volumeMounts:
55 - name: {{ include "common.fullname" . }}-filebeat-conf
56 mountPath: /usr/share/filebeat/filebeat.yml
57 subPath: filebeat.yml
58 - name: {{ include "common.fullname" . }}-data-filebeat
Michael O'Brienefcadf52018-07-23 17:31:05 -040059 mountPath: /usr/share/filebeat/data
ac2550de009892018-05-24 15:47:05 +020060 - name: {{ include "common.fullname" . }}-logs
61 mountPath: /var/log/onap
vaibhav_16decf67e4182018-03-19 05:45:47 +000062 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000063 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
vaibhav_16decf67e4182018-03-19 05:45:47 +000064 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ac2550de009892018-05-24 15:47:05 +020065 args:
66 - "-Dcom.att.eelf.logging.file=file:/opt/clamp/logback.xml"
67 - ""
vaibhav_16decf67e4182018-03-19 05:45:47 +000068 ports:
69 - containerPort: {{ .Values.service.internalPort }}
70 # disable liveness probe when breakpoints set in debugger
71 # so K8s doesn't restart unresponsive container
72 {{- if eq .Values.liveness.enabled true }}
73 livenessProbe:
74 tcpSocket:
75 port: {{ .Values.service.internalPort }}
76 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
77 periodSeconds: {{ .Values.liveness.periodSeconds }}
78 {{ end -}}
79 readinessProbe:
80 tcpSocket:
81 port: {{ .Values.service.internalPort }}
82 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
83 periodSeconds: {{ .Values.readiness.periodSeconds }}
ac25507895b2c2018-05-16 14:31:23 +020084 volumeMounts:
ac2550de009892018-05-24 15:47:05 +020085 - name: {{ include "common.fullname" . }}-logs
86 mountPath: /var/log/onap
ac25507895b2c2018-05-16 14:31:23 +020087 - mountPath: /opt/clamp/sdc-controllers-config.json
88 name: {{ include "common.fullname" . }}-config
89 subPath: sdc-controllers-config.json
ac2550de009892018-05-24 15:47:05 +020090 - mountPath: /opt/clamp/logback.xml
91 name: {{ include "common.fullname" . }}-config
92 subPath: logback.xml
vaibhav_16decf67e4182018-03-19 05:45:47 +000093 env:
94 - name: SPRING_APPLICATION_JSON
95 valueFrom:
96 configMapKeyRef:
97 name: {{ template "common.fullname" . }}
98 key: spring_application_json
99 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000100{{ include "common.resources" . | indent 12 }}
vaibhav_16decf67e4182018-03-19 05:45:47 +0000101 {{- if .Values.nodeSelector }}
102 nodeSelector:
103{{ toYaml .Values.nodeSelector | indent 10 }}
104 {{- end -}}
105 {{- if .Values.affinity }}
106 affinity:
107{{ toYaml .Values.affinity | indent 10 }}
108 {{- end }}
ac25507895b2c2018-05-16 14:31:23 +0200109 volumes:
110 - name: {{ include "common.fullname" . }}-config
111 configMap:
112 name: {{ include "common.fullname" . }}
113 items:
114 - key: sdc-controllers-config.json
115 path: sdc-controllers-config.json
ac2550de009892018-05-24 15:47:05 +0200116 - key: logback.xml
117 path: logback.xml
118 - name: {{ include "common.fullname" . }}-filebeat-conf
119 configMap:
120 name: {{ .Release.Name }}-clamp-filebeat-configmap
121 - name: {{ include "common.fullname" . }}-data-filebeat
122 emptyDir: {}
123 - name: {{ include "common.fullname" . }}-logs
124 emptyDir: {}
vaibhav_16decf67e4182018-03-19 05:45:47 +0000125 imagePullSecrets:
126 - name: "{{ include "common.namespace" . }}-docker-registry-key"