blob: b53b92091c7e013bdd29e0c487502f90f9876de0 [file] [log] [blame]
jasmineWen66f6a3b2018-04-03 17:48:41 +00001# 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 selector:
27 matchLabels:
28 app: {{ include "common.name" . }}
29 template:
30 metadata:
31 labels:
32 app: {{ include "common.name" . }}
33 release: {{ .Release.Name }}
34 name: {{ include "common.name" . }}
35 spec:
36 initContainers:
37 - command:
38 - /root/ready.py
39 args:
40 - --container-name
jasmineWenfb56f0f2018-08-29 15:55:28 +000041 - "{{ .Values.postgres.nameOverride }}"
jasmineWen66f6a3b2018-04-03 17:48:41 +000042 env:
43 - name: NAMESPACE
44 valueFrom:
45 fieldRef:
46 apiVersion: v1
47 fieldPath: metadata.namespace
48 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
49 imagePullPolicy: {{ .Values.global.pullPolicy}}
50 name: {{ include "common.name" . }}-readiness
51 containers:
52 - image: "{{ include "common.repository" . }}/{{ .Values.image }}"
53 imagePullPolicy: {{ .Values.pullPolicy | default .Values.global.pullPolicy }}
54 name: {{ include "common.name" . }}
vaibhav_16dec0acf5182018-09-19 04:28:55 +000055 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000056{{ include "common.resources" . | indent 12 }}
jasmineWen613f4eb2018-05-28 14:59:28 +000057 env:
58 - name: POSTGRES_SERVICE_HOST
jasmineWenfb56f0f2018-08-29 15:55:28 +000059 value: "$(VNFSDK_DBSET_SERVICE_HOST)"
jasmineWen66f6a3b2018-04-03 17:48:41 +000060 readinessProbe:
61 tcpSocket:
62 port: {{ .Values.service.internalPort }}
63 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
64 periodSeconds: {{ .Values.readiness.periodSeconds }}
65 imagePullSecrets:
66 - name: "{{ include "common.namespace" . }}-docker-registry-key"