blob: 60fdbb50cdbda2d4e2eda8695026fee7d883543f [file] [log] [blame]
yuryn5d0587b2017-10-26 17:10:50 +03001#{{ if not .Values.disableAaiSearchDataService }}
Mandeep Khindafc068432017-08-30 14:24:02 +00002apiVersion: extensions/v1beta1
3kind: Deployment
4metadata:
5 name: search-data-service
6 namespace: "{{ .Values.nsPrefix }}-aai"
7spec:
8 selector:
9 matchLabels:
10 app: search-data-service
11 template:
12 metadata:
13 labels:
14 app: search-data-service
15 name: search-data-service
16 spec:
17 containers:
18 - name: search-data-service
19 image: "{{ .Values.image.searchDataImage }}:{{ .Values.image.searchDataVersion }}"
20 imagePullPolicy: {{ .Values.pullPolicy }}
21 env:
22 - name: CONFIG_HOME
23 value: /opt/app/search-data-service/config/
24 - name: KEY_STORE_PASSWORD
25 value: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
26 - name: KEY_MANAGER_PASSWORD
27 value: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
28 volumeMounts:
yurync400bf52017-09-13 19:21:03 +030029 - mountPath: /etc/localtime
30 name: localtime
31 readOnly: true
Mandeep Khindafc068432017-08-30 14:24:02 +000032 - mountPath: /opt/app/search-data-service/config/
33 name: aai-search-data-service-config
BorislavGc4bafe12017-10-03 15:40:55 +030034 - mountPath: /var/log/onap
Mandeep Khindafc068432017-08-30 14:24:02 +000035 name: aai-search-data-service-logs
BorislavGc4bafe12017-10-03 15:40:55 +030036 - mountPath: /opt/app/search-data-service/bundleconfig/etc/logback.xml
37 name: aai-search-data-service-log-conf
38 subPath: logback.xml
Mandeep Khindafc068432017-08-30 14:24:02 +000039 ports:
40 - containerPort: 9509
41 readinessProbe:
42 tcpSocket:
43 port: 9509
44 initialDelaySeconds: 5
45 periodSeconds: 10
BorislavGc4bafe12017-10-03 15:40:55 +030046 - name: filebeat-onap-aai-search
47 image: {{ .Values.image.filebeat }}
48 imagePullPolicy: {{ .Values.pullPolicy }}
49 volumeMounts:
50 - mountPath: /usr/share/filebeat/filebeat.yml
51 name: filebeat-conf
52 - mountPath: /var/log/onap
53 name: aai-search-data-service-logs
54 - mountPath: /usr/share/filebeat/data
55 name: aai-search-data-service-filebeat
Mandeep Khindafc068432017-08-30 14:24:02 +000056 volumes:
yurync400bf52017-09-13 19:21:03 +030057 - name: localtime
58 hostPath:
59 path: /etc/localtime
Mandeep Khindafc068432017-08-30 14:24:02 +000060 - name: aai-search-data-service-config
61 hostPath:
62 path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/search-data-service/appconfig/"
BorislavGc4bafe12017-10-03 15:40:55 +030063 - name: filebeat-conf
Mandeep Khindafc068432017-08-30 14:24:02 +000064 hostPath:
BorislavGc4bafe12017-10-03 15:40:55 +030065 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/log4j/filebeat.yml
66 - name: aai-search-data-service-logs
67 emptyDir: {}
68 - name: aai-search-data-service-filebeat
69 emptyDir: {}
70 - name: aai-search-data-service-log-conf
71 configMap:
72 name: aai-search-data-service-configmap
Mandeep Khindafc068432017-08-30 14:24:02 +000073 restartPolicy: Always
74 imagePullSecrets:
75 - name: "{{ .Values.nsPrefix }}-docker-registry-key"
BorislavGc4bafe12017-10-03 15:40:55 +030076---
77apiVersion: v1
78kind: ConfigMap
79metadata:
80 name: aai-search-data-service-configmap
81 namespace: {{ .Values.nsPrefix }}-aai
82data:
83{{ (.Files.Glob "resources/search-data-service/conf/logback.xml").AsConfig | indent 2 }}
yuryn5d0587b2017-10-26 17:10:50 +030084#{{ end }}