blob: 2d45a0b097e4869e3a95ecdd85ad64a65019908d [file] [log] [blame]
kj9bf27312018-03-19 15:07:44 +02001# Copyright © 2017 Amdocs, Bell Canada
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
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
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 }}
25spec:
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 - /bin/sh
40 - -c
41 - |
42 mkdir -p /logroot/data-router/logs
43 chmod -R 777 /logroot/data-router/logs
44 chown -R root:root /logroot
45 env:
46 - name: NAMESPACE
47 valueFrom:
48 fieldRef:
49 apiVersion: v1
50 fieldPath: metadata.namespace
51 securityContext:
52 privileged: true
53 image: {{ .Values.global.dockerhubRepository | default .Values.dockerhubRepository }}/{{ .Values.global.busyboxImage | default .Values.busyboxImage }}
54 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55 name: init-sysctl
56 volumeMounts:
57 - name: {{ include "common.fullname" . }}-logs
58 mountPath: /logroot/
59 containers:
60 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000061 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
kj9bf27312018-03-19 15:07:44 +020062 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
63 env:
64 - name: SERVICE_BEANS
65 value: /opt/app/data-router/dynamic/conf
66 - name: CONFIG_HOME
67 value: /opt/app/data-router/config/
68 - name: KEY_STORE_PASSWORD
69 value: {{ .Values.config.keyStorePassword }}
70 - name: DYNAMIC_ROUTES
71 value: /opt/app/data-router/dynamic/routes
72 - name: KEY_MANAGER_PASSWORD
73 value: {{ .Values.config.keyManagerPassword }}
74 - name: PATH
75 value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
76 - name: JAVA_HOME
77 value: usr/lib/jvm/java-8-openjdk-amd64
78 volumeMounts:
79 - mountPath: /etc/localtime
80 name: localtime
81 readOnly: true
kj9bf27312018-03-19 15:07:44 +020082 - mountPath: /opt/app/data-router/config/auth
83 name: {{ include "common.fullname" . }}-auth
84 - mountPath: /opt/app/data-router/config/data-router.properties
85 name: {{ include "common.fullname" . }}-properties
86 subPath: data-router.properties
87 - mountPath: /opt/app/data-router/dynamic/routes/entity-event.route
88 subPath: entity-event.route
89 name: {{ include "common.fullname" . }}-dynamic-route
90 - mountPath: /opt/app/data-router/dynamic/conf/entity-event-policy.xml
91 subPath: entity-event-policy.xml
92 name: {{ include "common.fullname" . }}-dynamic-policy
93 - mountPath: /logs/
94 name: {{ include "common.fullname" . }}-logs
95 ports:
96 - containerPort: {{ .Values.service.internalPort }}
97 {{- if eq .Values.liveness.enabled true }}
98 livenessProbe:
99 tcpSocket:
100 port: {{ .Values.service.internalPort }}
101 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
102 periodSeconds: {{ .Values.liveness.periodSeconds }}
103 {{ end -}}
104 readinessProbe:
105 tcpSocket:
106 port: {{ .Values.service.internalPort }}
107 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
108 periodSeconds: {{ .Values.readiness.periodSeconds }}
109 volumes:
110 - name: localtime
111 hostPath:
112 path: /etc/localtime
kj9bf27312018-03-19 15:07:44 +0200113 - name: {{ include "common.fullname" . }}-auth
114 secret:
115 secretName: {{ include "common.fullname" . }}
116 - name: {{ include "common.fullname" . }}-properties
117 configMap:
118 name: {{ include "common.fullname" . }}-prop
119 - name: {{ include "common.fullname" . }}-dynamic-route
120 configMap:
121 name: {{ include "common.fullname" . }}-dynamic
122 - name: {{ include "common.fullname" . }}-dynamic-policy
123 configMap:
124 name: {{ include "common.fullname" . }}-dynamic
125 - name: {{ include "common.fullname" . }}-logs
126 hostPath:
BorislavG56857c42018-05-03 14:29:51 +0000127 path: {{ .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountSubPath }}
kj9bf27312018-03-19 15:07:44 +0200128 restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
129 imagePullSecrets:
130 - name: "{{ include "common.namespace" . }}-docker-registry-key"