blob: 5faa45357c86f329ad5aa9282ed08d1c08c061de [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:
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 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
107 - key: aai-environment.properties
108 path: aai-environment.properties
109 - key: schemaIngest.properties
110 path: schemaIngest.properties
111 - key: auth_policy.json
112 path: auth_policy.json
113 - name: config-auth
114 secret:
115 secretName: {{ include "common.fullname" . }}-config-auth-secret
116 items:
117 - key: tomcat_keystore
118 path: tomcat_keystore
119 - key: client-cert-onap.p12
120 path: client-cert-onap.p12
121 - name: config-topics
122 configMap:
123 name: {{ include "common.fullname" . }}-config-topics
124 defaultMode: 0644
125 items:
126 - key: topic-poa-audit-result.properties
127 path: topic-poa-audit-result.properties
128 - key: topic-poa-rule-validation.properties
129 path: topic-poa-rule-validation.properties
Pierre Rioux303680b2018-09-12 15:58:20 -0400130 - name: rules
131 configMap:
132 name: {{ include "common.fullname" . }}-rules
133 defaultMode: 0644
134 items:
135 - key: default-rules.groovy
136 path: default-rules.groovy
Geora Barsky4b328b82018-08-01 12:02:33 -0400137 imagePullSecrets:
138 - name: "{{ include "common.namespace" . }}-docker-registry-key"