blob: 8220553cf60ebb166aaeff27c29f6bbdd6854365 [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
jasmineWen613f4eb2018-05-28 14:59:28 +000041 - "{{ .Values.vnfsdkpostgres.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" . }}
jasmineWen613f4eb2018-05-28 14:59:28 +000055 env:
56 - name: POSTGRES_SERVICE_HOST
57 value: "$(VNFSDK_POSTGRES_SERVICE_HOST)"
jasmineWen66f6a3b2018-04-03 17:48:41 +000058 readinessProbe:
59 tcpSocket:
60 port: {{ .Values.service.internalPort }}
61 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
62 periodSeconds: {{ .Values.readiness.periodSeconds }}
63 imagePullSecrets:
64 - name: "{{ include "common.namespace" . }}-docker-registry-key"