[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / vnfsdk / templates / deployment.yaml
1 # 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
15 apiVersion: apps/v1
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: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   selector:
27     matchLabels:
28       app: {{ include "common.name" . }}
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}
33         release: {{ include "common.release" . }}
34       name: {{ include "common.name" . }}
35     spec:
36       initContainers:
37       - command:
38         - sh
39         args:
40         - -c
41         - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; done"
42         env:
43         - name: PG_USER
44           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }}
45         - name: PG_PASSWORD
46           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
47         volumeMounts:
48         - mountPath: /config-input
49           name: init-data-input
50         - mountPath: /config
51           name: init-data
52         image: "{{ .Values.global.envsubstImage }}"
53         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54         name: {{ include "common.name" . }}-update-config
55
56       - command:
57         - /app/ready.py
58         args:
59         - --container-name
60         - "{{ .Values.postgres.nameOverride }}"
61         env:
62         - name: NAMESPACE
63           valueFrom:
64             fieldRef:
65               apiVersion: v1
66               fieldPath: metadata.namespace
67         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
68         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
69         name: {{ include "common.name" . }}-readiness
70       containers:
71       - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
72         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
73         name: {{ include "common.name" . }}
74         resources:
75 {{ include "common.resources" . | indent 12 }}
76         volumes:
77         - mountPath: /service/webapps/ROOT/WEB-INF/classes/mybatis/configuration/configuration.xml
78           name: init-data
79           subPath: configuration.xml
80         readinessProbe:
81           tcpSocket:
82             port: {{ .Values.service.internalPort }}
83           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
84           periodSeconds: {{ .Values.readiness.periodSeconds }}
85       imagePullSecrets:
86       - name: "{{ include "common.namespace" . }}-docker-registry-key"
87       volumes:
88       - name: init-data-input
89         configMap:
90           name: {{ include "common.fullname" . }}
91       - name: init-data
92         emptyDir:
93           medium: Memory