Merge "vvp -- VNF Validation Platform"
[oom.git] / kubernetes / pomba / charts / pomba-data-router / templates / deployment.yaml
1 # Copyright © 2018 Amdocs
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ .Release.Name }}
35       name: {{ include "common.name" . }}
36     spec:
37       initContainers:
38       - command:
39         - /root/ready.py
40         args:
41         - --container-name
42         - pomba-search-data
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52       - command:
53         - /bin/sh
54         - -c
55         - |
56           mkdir -p /logroot/data-router/logs
57           chmod -R 777 /logroot/data-router/logs
58           chown -R root:root /logroot
59         env:
60         - name: NAMESPACE
61           valueFrom:
62             fieldRef:
63               apiVersion: v1
64               fieldPath: metadata.namespace
65         securityContext:
66           privileged: true
67         image: {{ .Values.global.dockerhubRepository | default .Values.dockerhubRepository }}/{{ .Values.global.busyboxImage | default .Values.busyboxImage }}
68         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
69         name: init-sysctl
70         volumeMounts:
71         - name: {{ include "common.fullname" . }}-logs
72           mountPath: /logroot/
73       containers:
74       - name: {{ include "common.name" . }}
75         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
76         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
77         env:
78         - name: SERVICE_BEANS
79           value: /opt/app/data-router/dynamic/conf
80         - name: CONFIG_HOME
81           value: /opt/app/data-router/config/
82         - name: KEY_STORE_PASSWORD
83           value: {{ .Values.config.keyStorePassword }}
84         - name: DYNAMIC_ROUTES
85           value: /opt/app/data-router/dynamic/routes
86         - name: KEY_MANAGER_PASSWORD
87           value: {{ .Values.config.keyManagerPassword }}
88         volumeMounts:
89         - mountPath: /etc/localtime
90           name: localtime
91           readOnly: true
92         - mountPath:  /opt/app/data-router/config/auth
93           name: {{ include "common.fullname" . }}-auth
94         - mountPath:  /opt/app/data-router/config/data-router.properties
95           subPath: data-router.properties
96           name: {{ include "common.fullname" . }}-properties
97         - mountPath:  /opt/app/data-router/config/schemaIngest.properties
98           subPath: schemaIngest.properties
99           name: {{ include "common.fullname" . }}-properties
100         - mountPath: /opt/app/data-router/dynamic/routes/audit.route
101           subPath: audit.route
102           name: {{ include "common.fullname" . }}-dynamic-route
103         - mountPath: /opt/app/data-router/dynamic/routes/poaValidation.route
104           subPath: poaValidation.route
105           name: {{ include "common.fullname" . }}-dynamic-route
106         - mountPath: /opt/app/data-router/dynamic/conf/audit-bean.xml
107           subPath: audit-bean.xml
108           name: {{ include "common.fullname" . }}-dynamic-policy
109         - mountPath: /opt/app/data-router/dynamic/conf/poa-validation-bean.xml
110           subPath: poa-validation-bean.xml
111           name: {{ include "common.fullname" . }}-dynamic-policy
112         - mountPath: /logs/
113           name: {{ include "common.fullname" . }}-logs
114         ports:
115         - containerPort: {{ .Values.service.internalPort }}
116         {{- if eq .Values.liveness.enabled true }}
117         livenessProbe:
118           tcpSocket:
119             port: {{ .Values.service.internalPort }}
120           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
121           periodSeconds: {{ .Values.liveness.periodSeconds }}
122         {{ end -}}
123         readinessProbe:
124           tcpSocket:
125             port: {{ .Values.service.internalPort }}
126           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
127           periodSeconds: {{ .Values.readiness.periodSeconds }}
128       volumes:
129       - name: localtime
130         hostPath:
131           path: /etc/localtime
132       - name: {{ include "common.fullname" . }}-auth
133         secret:
134           secretName: {{ include "common.fullname" . }}
135       - name: {{ include "common.fullname" . }}-properties
136         configMap:
137           name: {{ include "common.fullname" . }}-prop
138           items:
139           - key: data-router.properties
140             path: data-router.properties
141           - key: schemaIngest.properties
142             path: schemaIngest.properties
143       - name: {{ include "common.fullname" . }}-dynamic-route
144         configMap:
145           name: {{ include "common.fullname" . }}-dynamic
146       - name: {{ include "common.fullname" . }}-dynamic-policy
147         configMap:
148           name: {{ include "common.fullname" . }}-dynamic
149       - name: {{ include "common.fullname" . }}-logs
150         persistentVolumeClaim:
151           claimName: {{ include "common.fullname" . }}
152       restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
153       imagePullSecrets:
154       - name: "{{ include "common.namespace" . }}-docker-registry-key"