blob: df62915b64bf7ab4d6232d4a16535484924d5d8d [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 "+" "_" }}
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 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
88 volumes:
89 - name: localtime
90 hostPath:
91 path: /etc/localtime
92 - name: root-config-app-prop
93 configMap:
94 name: {{ include "common.fullname" . }}-root-config
95 defaultMode: 0644
96 - name: properties
97 configMap:
98 name: {{ include "common.fullname" . }}-config-properties
99 defaultMode: 0644
100 items:
101 - key: validation-service.properties
102 path: validation-service.properties
103 - key: validation-service-auth.properties
104 path: validation-service-auth.properties
105 - key: rule-indexing.properties
106 path: rule-indexing.properties
Pierre Rioux5f4b3db2019-01-09 15:41:17 -0500107 - key: rule-data-dictionary.properties
108 path: rule-data-dictionary.properties
Geora Barsky4b328b82018-08-01 12:02:33 -0400109 - key: aai-environment.properties
110 path: aai-environment.properties
111 - key: schemaIngest.properties
112 path: schemaIngest.properties
113 - key: auth_policy.json
114 path: auth_policy.json
115 - name: config-auth
116 secret:
117 secretName: {{ include "common.fullname" . }}-config-auth-secret
118 items:
119 - key: tomcat_keystore
120 path: tomcat_keystore
121 - key: client-cert-onap.p12
122 path: client-cert-onap.p12
123 - name: config-topics
124 configMap:
125 name: {{ include "common.fullname" . }}-config-topics
126 defaultMode: 0644
127 items:
128 - key: topic-poa-audit-result.properties
129 path: topic-poa-audit-result.properties
130 - key: topic-poa-rule-validation.properties
131 path: topic-poa-rule-validation.properties
Pierre Rioux303680b2018-09-12 15:58:20 -0400132 - name: rules
133 configMap:
134 name: {{ include "common.fullname" . }}-rules
135 defaultMode: 0644
136 items:
137 - key: default-rules.groovy
138 path: default-rules.groovy
Geora Barsky4b328b82018-08-01 12:02:33 -0400139 imagePullSecrets:
140 - name: "{{ include "common.namespace" . }}-docker-registry-key"