blob: 07f1ff44a9952cc196a38178ead0ab136d19094d [file] [log] [blame]
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T,VMware
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24 release: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
32 release: {{ .Release.Name }}
33 spec:
34 initContainers:
35 - command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - pdp
40 - --container-name
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070041 - aaf-service
42 - --container-name
43 - aaf-sms
44 - --container-name
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040045 - oof-has-api
46 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
52 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: {{ include "common.name" . }}-readiness
55 containers:
56 - name: {{ include "common.name" . }}
57 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
58 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59 ports:
60 - containerPort: {{ .Values.service.internalPort }}
61 # disable liveness probe when breakpoints set in debugger
62 # so K8s doesn't restart unresponsive container
63 {{- if .Values.liveness.enabled }}
64 livenessProbe:
65 tcpSocket:
66 port: {{ .Values.service.internalPort }}
67 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.liveness.periodSeconds }}
69 {{ end -}}
70 readinessProbe:
71 tcpSocket:
72 port: {{ .Values.service.internalPort }}
73 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74 periodSeconds: {{ .Values.readiness.periodSeconds }}
75 env:
76 volumeMounts:
77 - mountPath: /etc/localtime
78 name: localtime
79 readOnly: true
80 - mountPath: /opt/app/config/osdf_config.yaml
81 name: {{ include "common.fullname" . }}-config
82 subPath: osdf_config.yaml
Dileep Ranganathanf706ae12018-10-01 04:27:13 -070083 - mountPath: /opt/app/ssl_cert/aaf_root_ca.cer
84 name: {{ include "common.fullname" . }}-config
85 subPath: aaf_root_ca.cer
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040086 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000087{{ include "common.resources" . | indent 12 }}
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040088 {{- if .Values.nodeSelector }}
89 nodeSelector:
90{{ toYaml .Values.nodeSelector | indent 10 }}
91 {{- end -}}
92 {{- if .Values.affinity }}
93 affinity:
94{{ toYaml .Values.affinity | indent 10 }}
95 {{- end }}
96
97 volumes:
98 - name: localtime
99 hostPath:
100 path: /etc/localtime
101 - name: {{ include "common.fullname" . }}-config
102 configMap:
103 name: {{ include "common.fullname" . }}-configmap
104 items:
105 - key: osdf_config.yaml
106 path: osdf_config.yaml
Dileep Ranganathanf706ae12018-10-01 04:27:13 -0700107 - key: aaf_root_ca.cer
108 path: aaf_root_ca.cer
Ikram Ikramullah40b120b2018-05-01 11:35:40 -0400109 imagePullSecrets:
110 - name: "{{ include "common.namespace" . }}-docker-registry-key"