c60725ee15e0080f6dc88b934dce0ac43edf385c
[oom.git] / kubernetes / aai / templates / sparky-be-deployment.yaml
1 #{{ if not .Values.disableAaiSparkyBe }}
2 apiVersion: extensions/v1beta1
3 kind: Deployment
4 metadata:
5   name: sparky-be
6   namespace: "{{ .Values.nsPrefix }}-aai"
7 spec:
8   selector:
9     matchLabels:
10       app: sparky-be
11   template:
12     metadata:
13       labels:
14         app: sparky-be
15       name: sparky-be
16     spec:
17       containers:
18       - name: sparky-be
19         image: "{{ .Values.image.sparkyBeImage }}:{{ .Values.image.sparkyBeVersion }}"
20         imagePullPolicy: {{ .Values.pullPolicy }}
21         env:
22         - name: CONFIG_HOME
23           value: /opt/app/sparky/config/
24         - name: KEY_MANAGER_PASSWORD
25           value: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
26         - name: KEY_STORE_PASSWORD
27           value: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
28         volumeMounts:
29         - mountPath: /etc/localtime
30           name: localtime
31           readOnly: true
32         - mountPath: /opt/app/sparky/config/
33           name: aai-sparky-be-config
34         - mountPath: /var/log/onap
35           name: aai-sparky-be-logs
36         - mountPath: /opt/app/sparky/bundleconfig/etc/logback.xml
37           name: aai-sparky-be-log-conf
38           subPath: logback.xml
39         ports:
40         - containerPort: 9517
41         readinessProbe:
42           tcpSocket:
43             port: 9517
44           initialDelaySeconds: 5
45           periodSeconds: 10
46       - name: filebeat-onap-aai-sparky
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-sparky-be-logs
54         - mountPath: /usr/share/filebeat/data
55           name: aai-sparky-filebeat
56       volumes:
57       - name: localtime
58         hostPath:
59           path: /etc/localtime
60       - name: aai-sparky-be-config
61         hostPath:
62           path: "/dockerdata-nfs/{{ .Values.nsPrefix }}/aai/sparky-be/appconfig/"
63       - name: filebeat-conf
64         hostPath:
65           path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/log4j/filebeat.yml
66       - name: aai-sparky-be-logs
67         emptyDir: {}
68       - name: aai-sparky-filebeat
69         emptyDir: {}
70       - name: aai-sparky-be-log-conf
71         configMap:
72          name: aai-sparky-be-configmap
73       restartPolicy: Always
74       imagePullSecrets:
75       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
76 ---
77 apiVersion: v1
78 kind: ConfigMap
79 metadata:
80   name: aai-sparky-be-configmap
81   namespace: {{ .Values.nsPrefix }}-aai
82 data:
83 {{ (.Files.Glob "resources/sparky-be/conf/logback.xml").AsConfig | indent 2 }}
84 #{{ end }}