blob: fffd4db8476652a48038225cdd4401ed001676aa [file] [log] [blame]
dglFromAttfb58a9d2019-04-12 20:12:26 +00001
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:
dglFromAttfb58a9d2019-04-12 20:12:26 +000035 - ip: "10.12.5.145"
dglFromAtt7bc16362019-01-18 20:50:20 +000036 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
dglFromAttfb58a9d2019-04-12 20:12:26 +000043 - aaf-locate
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" . }}-aaf-readiness
53{{ if .Values.PG.enabled }}
54 - command:
55 - /root/ready.py
56 args:
57 - --container-name
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000058 - {{ .Values.postgres.nameOverride }}
59 env:
60 - name: NAMESPACE
61 valueFrom:
62 fieldRef:
63 apiVersion: v1
64 fieldPath: metadata.namespace
65 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
66 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
dglFromAttfb58a9d2019-04-12 20:12:26 +000067 name: {{ include "common.name" . }}-postgres-readiness
68{{- end}}
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000069 containers:
70 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000071 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000072 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
73 ports:
74 - containerPort: {{ .Values.service.internalPort }}
75 - containerPort: {{ .Values.service.internalPort2 }}
76 {{if eq .Values.liveness.enabled true }}
77 livenessProbe:
78 httpGet:
79 port: {{ .Values.service.internalPort }}
80 path: /webapi/info
81 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
dglFromAttec0918d2018-10-17 19:34:49 +000082 periodSeconds: {{ .Values.liveness.periodSeconds }}
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000083 readinessProbe:
84 httpGet:
dglFromAttd9d3f422018-10-18 21:04:35 +000085 host: {{ .Values.dmaapMessageRouterService }}
86 port: 3904
87 path: /topics
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000088 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
89 periodSeconds: {{ .Values.readiness.periodSeconds }}
90 {{ end -}}
91 volumeMounts:
92 - mountPath: /etc/localtime
93 name: localtime
94 readOnly: true
dglFromAttec0918d2018-10-17 19:34:49 +000095
96# NOTE: on the following several configMaps, careful to include / at end
97# since there may be more than one file in each mountPath
Dominic Lunanuovae825fee2018-04-12 14:40:34 +000098 - name: {{ include "common.name" . }}-config
dglFromAtt82340072018-10-16 21:53:34 +000099 mountPath: /opt/app/config/conf/
pkaras837db952019-04-23 13:45:25 +0200100 - name: {{ include "common.name" . }}-aaf-config
101 mountPath: /opt/app/dmaapbc/etc/org.onap.dmaap-bc.props
102 subPath: org.onap.dmaap-bc.props
dglFromAttc72605e2018-08-30 18:04:20 +0000103
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000104 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000105{{ include "common.resources" . | indent 12 }}
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000106 {{- if .Values.nodeSelector }}
107 nodeSelector:
108{{ toYaml .Values.nodeSelector | indent 10 }}
109 {{- end -}}
110 {{- if .Values.affinity }}
111 affinity:
112{{ toYaml .Values.affinity | indent 10 }}
113 {{- end }}
114 volumes:
115 - name: localtime
116 hostPath:
117 path: /etc/localtime
118 - name: {{ include "common.name" . }}-config
119 configMap:
120 name: {{ include "common.fullname" . }}-config
pkaras837db952019-04-23 13:45:25 +0200121 - name: {{ include "common.name" . }}-aaf-config
122 configMap:
123 name: {{ include "common.fullname" . }}-aaf-config
Dominic Lunanuovae825fee2018-04-12 14:40:34 +0000124 imagePullSecrets:
125 - name: "{{ include "common.namespace" . }}-docker-registry-key"