added filebeat to all components
[oom.git] / kubernetes / sdc / templates / sdc-fe.yaml
1 apiVersion: extensions/v1beta1
2 kind: Deployment
3 metadata:
4   labels:
5     app: sdc-fe
6   name: sdc-fe
7   namespace: "{{ .Values.nsPrefix }}-sdc"
8 spec:
9   selector:
10     matchLabels:
11       app: sdc-fe
12   template:
13     metadata:
14       labels:
15         app: sdc-fe
16       name: sdc-fe
17       annotations:
18         pod.beta.kubernetes.io/init-containers: '[
19           {
20               "args": [
21                   "--container-name",
22                   "sdc-es",
23                   "--container-name",
24                   "sdc-cs",
25                   "--container-name",
26                   "sdc-kb",
27                   "--container-name",
28                   "sdc-be"
29               ],
30               "command": [
31                   "/root/ready.py"
32               ],
33               "env": [
34                   {
35                       "name": "NAMESPACE",
36                       "valueFrom": {
37                           "fieldRef": {
38                               "apiVersion": "v1",
39                               "fieldPath": "metadata.namespace"
40                           }
41                       }
42                   }
43               ],
44               "image": "{{ .Values.image.readiness }}",
45               "imagePullPolicy": "{{ .Values.pullPolicy }}",
46               "name": "sdc-fe-readiness"
47           }
48           ]'
49     spec:
50       containers:
51       - name: sdc-fe
52         env:
53         - name: ENVNAME
54           value: AUTO
55         - name: HOST_IP
56           valueFrom:
57             fieldRef:
58               fieldPath: status.podIP
59         image: {{ .Values.image.sdcFrontend }}
60         imagePullPolicy: {{ .Values.pullPolicy }}
61         volumeMounts:
62         - mountPath: /usr/share/elasticsearch/data/
63           name: sdc-sdc-es-es
64         - mountPath: /root/chef-solo/environments/
65           name: sdc-environments
66         - mountPath: /etc/localtime
67           name: sdc-localtime
68           readOnly: true
69         - mountPath: /var/lib/jetty/logs
70           name: sdc-logs
71         - mountPath: /root/chef-solo/cookbooks/sdc-catalog-fe/recipes/FE_2_setup_configuration.rb
72           name: sdc-fe-config
73         - mountPath: /tmp/logback.xml
74           name: sdc-logback
75         lifecycle:
76           postStart:
77             exec:
78               command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/var/lib/jetty/config/catalog-fe/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"]
79         ports:
80         - containerPort: 9443
81         - containerPort: 8181
82         readinessProbe:
83           tcpSocket:
84             port: 8181
85           initialDelaySeconds: 5
86           periodSeconds: 10
87       - image: {{ .Values.image.filebeat }}
88         imagePullPolicy: {{ .Values.pullPolicy }}
89         name: filebeat-onap
90         volumeMounts:
91         - mountPath: /usr/share/filebeat/filebeat.yml
92           name: filebeat-conf
93         - mountPath: /var/log/onap
94           name: sdc-logs-2
95         - mountPath: /usr/share/filebeat/data
96           name: sdc-data-filebeat
97       volumes:
98         - name: filebeat-conf
99           hostPath:
100             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/logback/filebeat.yml
101         - name: sdc-logs-2
102           emptyDir: {}
103         - name: sdc-data-filebeat
104           emptyDir: {}
105         - name: sdc-logback
106           hostPath:
107             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/sdc/fe/logback.xml
108         - name: sdc-sdc-es-es
109           hostPath:
110             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdc/sdc-es/ES
111         - name: sdc-environments
112           hostPath:
113             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdc/environments
114         - name: sdc-localtime
115           hostPath:
116             path:  /etc/localtime
117         - name:  sdc-logs
118           hostPath:
119             path:  /dockerdata-nfs/{{ .Values.nsPrefix }}/sdc/logs
120         - name:  sdc-fe-config
121           hostPath:
122             path:  /dockerdata-nfs/{{ .Values.nsPrefix }}/sdc/sdc-fe/FE_2_setup_configuration.rb
123       imagePullSecrets:
124       - name: "{{ .Values.nsPrefix }}-docker-registry-key"