blob: d608a0ac925c8ea3c1f1e1e3b1f25c8a548b3bef [file] [log] [blame]
Geora Barsky4b328b82018-08-01 12:02:33 -04001# 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
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 "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
Geora Barsky4b328b82018-08-01 12:02:33 -040024 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010031 release: {{ include "common.release" . }}
Geora Barsky4b328b82018-08-01 12:02:33 -040032 spec:
33 containers:
34 - name: {{ include "common.name" . }}
35 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
36 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
37 ports:
38 - containerPort: {{ .Values.service.internalPort }}
39 # disable liveness probe when breakpoints set in debugger
40 # so K8s doesn't restart unresponsive container
41 {{ if .Values.liveness.enabled }}
42 livenessProbe:
43 tcpSocket:
44 port: {{ .Values.service.internalPort }}
45 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
46 periodSeconds: {{ .Values.liveness.periodSeconds }}
47 {{ end }}
48 {{ if .Values.readiness.enabled }}
49 readinessProbe:
50 tcpSocket:
51 port: {{ .Values.service.internalPort }}
52 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
53 periodSeconds: {{ .Values.readiness.periodSeconds }}
54 {{ end }}
55 env:
56 - name: APP_HOME
57 value: "{{ .Values.config.appDir }}"
58 - name: CONFIG_HOME
59 value: "{{ .Values.config.configDir }}"
60 - name: MAX_HEAP
61 value: "{{ .Values.config.maxHeap }}"
62 volumeMounts:
63 - mountPath: /etc/localtime
64 name: localtime
65 readOnly: true
66 - mountPath: {{ .Values.config.appDir }}/application.properties
67 name: root-config-app-prop
68 subPath: application.properties
69 - mountPath: {{ .Values.config.configDir }}/
70 name: properties
71 - mountPath: {{ .Values.config.configAuthDir }}/
72 name: config-auth
73 - mountPath: {{ .Values.config.configTopicsDir }}/
74 name: config-topics
Pierre Rioux303680b2018-09-12 15:58:20 -040075 - mountPath: {{ .Values.config.rulesDir }}/
76 name: rules
Geora Barsky4b328b82018-08-01 12:02:33 -040077 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000078{{ include "common.resources" . | indent 12 }}
Geora Barsky4b328b82018-08-01 12:02:33 -040079 {{- 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
jmac76d4a8a2019-02-21 20:03:49 +000088 # Filebeat sidecar container
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" . }}-data-filebeat
97 mountPath: /usr/share/filebeat/data
98 - name: {{ include "common.fullname" . }}-logs
99 mountPath: /opt/app/logs
100
Geora Barsky4b328b82018-08-01 12:02:33 -0400101 volumes:
102 - name: localtime
103 hostPath:
104 path: /etc/localtime
jmac76d4a8a2019-02-21 20:03:49 +0000105 - name: {{ include "common.fullname" . }}-filebeat-conf
106 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100107 name: {{ include "common.release" . }}-pomba-filebeat-configmap
jmac76d4a8a2019-02-21 20:03:49 +0000108 - name: {{ include "common.fullname" . }}-data-filebeat
109 emptyDir: {}
Geora Barsky4b328b82018-08-01 12:02:33 -0400110 - name: root-config-app-prop
111 configMap:
112 name: {{ include "common.fullname" . }}-root-config
113 defaultMode: 0644
jmac76d4a8a2019-02-21 20:03:49 +0000114 - name: {{ include "common.fullname" . }}-logs
115 emptyDir: {}
Geora Barsky4b328b82018-08-01 12:02:33 -0400116 - name: properties
117 configMap:
118 name: {{ include "common.fullname" . }}-config-properties
119 defaultMode: 0644
120 items:
121 - key: validation-service.properties
122 path: validation-service.properties
123 - key: validation-service-auth.properties
124 path: validation-service-auth.properties
125 - key: rule-indexing.properties
126 path: rule-indexing.properties
Pierre Rioux5f4b3db2019-01-09 15:41:17 -0500127 - key: rule-data-dictionary.properties
128 path: rule-data-dictionary.properties
Geora Barsky4b328b82018-08-01 12:02:33 -0400129 - key: aai-environment.properties
130 path: aai-environment.properties
131 - key: schemaIngest.properties
132 path: schemaIngest.properties
133 - key: auth_policy.json
134 path: auth_policy.json
135 - name: config-auth
136 secret:
137 secretName: {{ include "common.fullname" . }}-config-auth-secret
138 items:
139 - key: tomcat_keystore
140 path: tomcat_keystore
141 - key: client-cert-onap.p12
142 path: client-cert-onap.p12
143 - name: config-topics
144 configMap:
145 name: {{ include "common.fullname" . }}-config-topics
146 defaultMode: 0644
147 items:
148 - key: topic-poa-audit-result.properties
149 path: topic-poa-audit-result.properties
150 - key: topic-poa-rule-validation.properties
151 path: topic-poa-rule-validation.properties
Pierre Rioux303680b2018-09-12 15:58:20 -0400152 - name: rules
153 configMap:
154 name: {{ include "common.fullname" . }}-rules
155 defaultMode: 0644
156 items:
157 - key: default-rules.groovy
158 path: default-rules.groovy
Geora Barsky4b328b82018-08-01 12:02:33 -0400159 imagePullSecrets:
160 - name: "{{ include "common.namespace" . }}-docker-registry-key"