blob: 0ecdc1c0e8c230f8f45cdd00eb47c90783a4bb24 [file] [log] [blame]
Dominic Lunanuovae825fee2018-04-12 14:40:34 +00001# Copyright © 2018 AT&T Intellectual Property. All rights reserved.
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 Amdocs,Bell Canada
Dominic Lunanuovae825fee2018-04-12 14:40:34 +00003#
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:
dglFromAtt7bc16362019-01-18 20:50:20 +000034 hostAliases:
35 - ip: "10.12.6.214"
36 hostnames:
37 - "aaf-onap-test.osaaf.org"
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000038 initContainers:
39 - command:
40 - /root/ready.py
41 args:
42 - --container-name
43 - {{ .Values.postgres.nameOverride }}
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 name: {{ include "common.name" . }}-readiness
53 containers:
54 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000055 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000056 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57 ports:
58 - containerPort: {{ .Values.service.internalPort }}
59 - containerPort: {{ .Values.service.internalPort2 }}
60 {{if eq .Values.liveness.enabled true }}
61 livenessProbe:
62 httpGet:
63 port: {{ .Values.service.internalPort }}
64 path: /webapi/info
65 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
dglFromAttec0918d2018-10-17 19:34:49 +000066 periodSeconds: {{ .Values.liveness.periodSeconds }}
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000067 readinessProbe:
68 httpGet:
dglFromAttd9d3f422018-10-18 21:04:35 +000069 host: {{ .Values.dmaapMessageRouterService }}
70 port: 3904
71 path: /topics
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000072 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.readiness.periodSeconds }}
74 {{ end -}}
75 volumeMounts:
76 - mountPath: /etc/localtime
77 name: localtime
78 readOnly: true
dglFromAttec0918d2018-10-17 19:34:49 +000079
80# NOTE: on the following several configMaps, careful to include / at end
81# since there may be more than one file in each mountPath
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000082 - name: {{ include "common.name" . }}-config
dglFromAtt82340072018-10-16 21:53:34 +000083 mountPath: /opt/app/config/conf/
dglFromAttc72605e2018-08-30 18:04:20 +000084
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000085 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000086{{ include "common.resources" . | indent 12 }}
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000087 {{- if .Values.nodeSelector }}
88 nodeSelector:
89{{ toYaml .Values.nodeSelector | indent 10 }}
90 {{- end -}}
91 {{- if .Values.affinity }}
92 affinity:
93{{ toYaml .Values.affinity | indent 10 }}
94 {{- end }}
95 volumes:
96 - name: localtime
97 hostPath:
98 path: /etc/localtime
99 - name: {{ include "common.name" . }}-config
100 configMap:
101 name: {{ include "common.fullname" . }}-config
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000102 imagePullSecrets:
103 - name: "{{ include "common.namespace" . }}-docker-registry-key"