c9cb645bae97f29de53daa35e61528cb8015226e
[oom.git] / kubernetes / portal / templates / portal-apps-deployment.yaml
1 apiVersion: extensions/v1beta1
2 kind: Deployment
3 metadata:
4   name: portalapps
5   namespace: "{{ .Values.nsPrefix }}-portal"
6 spec:
7   selector:
8     matchLabels:
9       app: portalapps
10   template:
11     metadata:
12        labels:
13          app: portalapps
14        name: portalapps
15        annotations:
16          pod.beta.kubernetes.io/init-containers: '[
17            {
18                "args": [
19                    "--container-name",
20                    "portaldb"
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": "portalapps-readiness"
39            },
40            {
41                "command": ["/bin/bash", "-c", "if [ ! -e /portal_root/boot.txt ]; then mysql -u root -pAa123456 -h portaldb < /portal-mysql/oom_updates.sql; fi"],
42                "volumeMounts": [
43                  {
44                    "mountPath": "/portal-mysql/oom_updates.sql",
45                    "name": "portal-mariadb-onboarding-sql"
46                  },
47                  {
48                    "mountPath": "/portal_root/",
49                    "name": "portal-root"
50                  }
51                ],
52                "image": "{{ .Values.image.mariadbClient }}",
53                "imagePullPolicy": "{{ .Values.pullPolicy }}",
54                "name": "provision-portaldb-users"
55            }
56            ]'
57     spec:
58       containers:
59       - image: {{ .Values.image.portalapps }}
60         imagePullPolicy: {{ .Values.pullPolicy }}
61         lifecycle:
62           postStart:
63             exec:
64               command: ["/bin/sh", "-c", "echo yes > /portal_root/boot.txt"]
65         name: portalapps
66         volumeMounts:
67         - mountPath: /etc/localtime
68           name: localtime
69           readOnly: true
70         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPPORTAL/WEB-INF/fusion/conf/fusion.properties"
71           name: portal-fusion-properties
72         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPPORTAL/WEB-INF/classes/openid-connect.properties"
73           name: portal-openid-connect-properties
74         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPPORTAL/WEB-INF/conf/system.properties"
75           name: portal-system-properties
76         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPPORTAL/WEB-INF/classes/portal.properties"
77           name: portal-portal-properties
78         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPPORTAL/WEB-INF/classes/logback.xml"
79           name: portal-logback
80         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPSDKAPP/WEB-INF/conf/system.properties"
81           name: sdkapp-system-properties
82         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPSDKAPP/WEB-INF/classes/portal.properties"
83           name: sdkapp-portal-properties
84         - mountPath: "{{ .Values.onapPortal.webappsDir }}/ECOMPSDKAPP/WEB-INF/fusion/conf/fusion.properties"
85           name: sdkapp-fusion-properties
86         - mountPath: /portal_root/
87           name: portal-root
88         - mountPath: "{{ .Values.onapPortal.webappsDir }}/logs"
89           name: portal-logs
90         - mountPath: /var/log/onap
91           name: portal-logs2
92         - mountPath: /PROJECT/APPS/ECOMPPORTAL/ECOMPSDKAPP/WEB-INF/classes/logback.xml
93           name: portal-logback-be
94         ports:
95         - containerPort: 8005
96         - containerPort: 8009
97         - containerPort: 8080
98         readinessProbe:
99           tcpSocket:
100             port: 8080
101           initialDelaySeconds: 5
102           periodSeconds: 10
103       - image: {{ .Values.image.filebeat }}
104         imagePullPolicy: {{ .Values.pullPolicy }}
105         name: filebeat-onap
106         volumeMounts:
107         - mountPath: /usr/share/filebeat/filebeat.yml
108           name: filebeat-conf
109         - mountPath: /var/log/onap
110           name: portal-logs2
111         - mountPath: /usr/share/filebeat/data
112           name: portal-data-filebeat
113       volumes:
114         - name: localtime
115           hostPath:
116             path: /etc/localtime
117         - name: filebeat-conf
118           hostPath:
119             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/filebeat/logback/filebeat.yml
120         - name: portal-logs2
121           emptyDir: {}
122         - name: portal-data-filebeat
123           emptyDir: {}
124         - name: portal-logback-be
125           hostPath:
126             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/log/portal/portal-be/logback.xml
127         - name: portal-fusion-properties
128           hostPath:
129             path:  /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/fusion.properties
130         - name: portal-openid-connect-properties
131           hostPath:
132             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/openid-connect.properties
133         - name: portal-system-properties
134           hostPath:
135             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/system.properties
136         - name: portal-portal-properties
137           hostPath:
138             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/portal.properties
139         - name: portal-logback
140           hostPath:
141             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPPORTALAPP/logback.xml
142         - name: dbcapp-fusion-properties
143           hostPath:
144             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPDBCAPP/fusion.properties
145         - name: dbcapp-system-properties
146           hostPath:
147             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPDBCAPP/system.properties
148         - name: dbcapp-portal-properties
149           hostPath:
150             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPDBCAPP/portal.properties
151         - name: dbcapp-dbcapp-properties
152           hostPath:
153             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPDBCAPP/dbcapp.properties
154         - name: sdkapp-system-properties
155           hostPath:
156             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPSDKAPP/system.properties
157         - name: sdkapp-portal-properties
158           hostPath:
159             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPSDKAPP/portal.properties
160         - name: sdkapp-fusion-properties
161           hostPath:
162             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPSDKAPP/fusion.properties
163         - name: portal-mariadb-onboarding-sql
164           hostPath:
165             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/mariadb/oom_updates.sql
166         - name: portal-root
167           hostPath:
168             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal
169         - name: portal-logs
170           hostPath:
171             path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/logs
172       imagePullSecrets:
173       - name: "{{ .Values.nsPrefix }}-docker-registry-key"