blob: fb6b4d871241298c4860efc0883713c7afbfd10d [file] [log] [blame]
Mandeep Khinda82c63d32017-08-21 16:04:37 -04001apiVersion: extensions/v1beta1
2kind: Deployment
3metadata:
4 name: portalwidgets
Mandeep Khinda0e8f8892017-08-25 03:31:17 +00005 namespace: "{{ .Values.nsPrefix }}-portal"
Mandeep Khinda82c63d32017-08-21 16:04:37 -04006spec:
7 selector:
8 matchLabels:
9 app: portalwidgets
10 template:
11 metadata:
12 labels:
13 app: portalwidgets
14 name: portalwidgets
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 ],
kerenjcbac0102017-08-23 10:22:33 +000036 "image": "{{ .Values.image.readiness }}",
37 "imagePullPolicy": "{{ .Values.pullPolicy }}",
Mandeep Khinda82c63d32017-08-21 16:04:37 -040038 "name": "portalapps-readiness"
39 }
40 ]'
41 spec:
42 containers:
kerenjcbac0102017-08-23 10:22:33 +000043 - image: {{ .Values.image.portalwms }}
44 imagePullPolicy: {{ .Values.pullPolicy }}
Mandeep Khinda82c63d32017-08-21 16:04:37 -040045 name: portalwidgets
46 volumeMounts:
yuryn8b3bc5a2017-09-13 19:21:03 +030047 - mountPath: /etc/localtime
48 name: localtime
49 readOnly: true
Mandeep Khinda82c63d32017-08-21 16:04:37 -040050 - mountPath: /application.properties
51 name: portalwidgets-application-properties
52 ports:
53 - containerPort: 8082
54 readinessProbe:
55 tcpSocket:
56 port: 8082
57 initialDelaySeconds: 5
58 periodSeconds: 10
59 volumes:
yuryn8b3bc5a2017-09-13 19:21:03 +030060 - name: localtime
61 hostPath:
62 path: /etc/localtime
Mandeep Khinda82c63d32017-08-21 16:04:37 -040063 - name: portalwidgets-application-properties
64 hostPath:
Mandeep Khinda0e8f8892017-08-25 03:31:17 +000065 path: /dockerdata-nfs/{{ .Values.nsPrefix }}/portal/portal-fe/webapps/etc/ECOMPWIDGETMS/application.properties
66 imagePullSecrets:
67 - name: "{{ .Values.nsPrefix }}-docker-registry-key"