jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 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: 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 | 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 |
jasmineWen | fb56f0f | 2018-08-29 15:55:28 +0000 | [diff] [blame] | 41 | - "{{ .Values.postgres.nameOverride }}" |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 42 | 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_16dec | 0acf518 | 2018-09-19 04:28:55 +0000 | [diff] [blame] | 55 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 56 | {{ include "common.resources" . | indent 12 }} |
jasmineWen | 613f4eb | 2018-05-28 14:59:28 +0000 | [diff] [blame] | 57 | env: |
| 58 | - name: POSTGRES_SERVICE_HOST |
jasmineWen | fb56f0f | 2018-08-29 15:55:28 +0000 | [diff] [blame] | 59 | value: "$(VNFSDK_DBSET_SERVICE_HOST)" |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 60 | 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" |