added filebeat to all components
[oom.git] / kubernetes / appc / templates / appc-deployment.yaml
1 apiVersion: extensions/v1beta1
2 kind: Deployment
3 metadata:
4   name: appc
5   namespace: "{{ .Values.nsPrefix }}-appc"
6 spec:
7   selector:
8     matchLabels:
9       app: appc
10   template:
11     metadata:
12       labels:
13         app: appc
14       name: appc
15       annotations:
16         pod.beta.kubernetes.io/init-containers: '[
17           {
18               "args": [
19                   "--container-name",
20                   "appc-db-container"
21               ],
22               "command": [
23                   "/root/ready.py"
24               ],
25               "env": [
26                   {
27                       "name": "NAMESPACE",
28                       "valueFrom": {
29                           "fieldRef": {
30                               "apiVersion": "v1",
31                               "fieldPath": "metadata.namespace"
32                           }
33                       }
34                   }
35               ],
36               "image": "{{ .Values.image.readiness }}",
37               "imagePullPolicy": "{{ .Values.pullPolicy }}",
38               "name": "appc-readiness"
39           }
40           ]'
41     spec:
42       containers:
43       - command:
44         - /opt/openecomp/appc/bin/startODL.sh
45         env:
46         - name: MYSQL_ROOT_PASSWORD
47           value: openECOMP1.0
48         - name: SDNC_CONFIG_DIR
49           value: /opt/openecomp/appc/data/properties
50         - name: APPC_CONFIG_DIR
51           value: /opt/openecomp/appc/data/properties
52         - name: DMAAP_TOPIC_ENV
53           value: SUCCESS
54         image: {{ .Values.image.appc }}
55         imagePullPolicy: {{ .Values.pullPolicy }}
56         name: appc-controller-container
57         volumeMounts:
58         - mountPath: /etc/localtime
59           name: localtime
60           readOnly: true
61         - mountPath: /opt/openecomp/appc/data/properties/appc.properties
62           name: appc-properties
63         - mountPath: /opt/openecomp/appc/data/properties/aaiclient.properties
64           name: appc-aaiclient-properties
65         - mountPath: /opt/openecomp/sdnc/data/properties/aaiclient.properties
66           name: sdnc-aaiclient-properties
67         - mountPath: /opt/openecomp/sdnc/data/properties/admportal.json
68           name: sdnc-admportal-json
69         - mountPath: /var/log/onap
70           name: appc-logs
71         - mountPath: /opt/opendaylight/current/etc/org.ops4j.pax.logging.cfg
72           name: appc-log-config
73         ports:
74         - containerPort: 8181
75         - containerPort: 1830
76         readinessProbe:
77           tcpSocket:
78             port: 8181
79           initialDelaySeconds: 5
80           periodSeconds: 10
81       - image: {{ .Values.image.filebeat }}
82         imagePullPolicy: {{ .Values.pullPolicy }}
83         name: filebeat-onap
84         volumeMounts:
85         - mountPath: /usr/share/filebeat/filebeat.yml
86           name: filebeat-conf
87         - mountPath: /var/log/onap
88           name: appc-logs
89         - mountPath: /usr/share/filebeat/data
90           name: appc-data-filebeat
91       volumes:
92         - name: localtime
93           hostPath:
94             path: /etc/localtime
95         - name: filebeat-conf
96           hostPath:
97             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/log4j/filebeat.yml
98         - name: appc-log-config
99           hostPath:
100             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/appc/org.ops4j.pax.logging.cfg
101         - name: appc-logs
102           emptyDir: {}
103         - name: appc-data-filebeat
104           emptyDir: {}
105         - name: appc-properties
106           hostPath:
107             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/appc/conf/appc.properties
108         - name: appc-aaiclient-properties
109           hostPath:
110             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/appc/conf/aaiclient.properties
111         - name: sdnc-aaiclient-properties
112           hostPath:
113             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/conf/aaiclient.properties
114         - name: sdnc-admportal-json
115           hostPath:
116             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/sdnc/conf/admportal.json
117       imagePullSecrets:
118       - name: "{{ .Values.nsPrefix }}-docker-registry-key"