[DCAE][DCAEMOD] Deploy R7 container images
[oom.git] / kubernetes / dcaegen2 / components / dcae-inventory-api / templates / deployment.yaml
1 #============LICENSE_START========================================================
2 # ================================================================================
3 # Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ============LICENSE_END=========================================================
17
18 apiVersion: extensions/v1beta1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: 1
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ include "common.release" . }}
35     spec:
36       initContainers:
37         - command:
38           - sh
39           args:
40           - -c
41           - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; done"
42           env:
43           - name: PG_USER
44             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 12 }}
45           - name: PG_PASSWORD
46             {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 12 }}
47           volumeMounts:
48           - mountPath: /config-input
49             name: {{ include "common.fullname" . }}-inv-config-input
50           - mountPath: /config
51             name: {{ include "common.fullname" . }}-inv-config
52           image: "{{ .Values.global.envsubstImage }}"
53           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54           name: {{ include "common.name" . }}-update-config
55
56         - name: {{ include "common.name" . }}-readiness
57           image: {{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}
58           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59           command:
60             - /root/ready.py
61           args:
62             - --container-name
63             - {{ .Values.postgres.nameOverride }}
64             - --container-name
65             - aaf-cm
66             - "-t"
67             - "15"
68           env:
69           - name: NAMESPACE
70             valueFrom:
71               fieldRef:
72                 apiVersion: v1
73                 fieldPath: metadata.namespace
74         - name: init-tls
75           env:
76           - name: aaf_locator_fqdn
77             value: dcae
78           - name: POD_IP
79             valueFrom:
80               fieldRef:
81                 apiVersion: v1
82                 fieldPath: status.podIP
83           image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }}
84           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
85           resources: {}
86           volumeMounts:
87             - mountPath: /opt/app/osaaf
88               name: tls-info
89       containers:
90         - name: {{ include "common.name" . }}
91           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
92           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
93           # Assumes that the Docker image is built with ENTRYPOINT set to
94           # ["java", "-jar", "/opt/inventory-api-x.y.z.jar", "server"]
95           # where "x.y.z" is the version number (matches the Docker image version number)
96           # The arg below adds a parameter, the path to a config file.
97           # This tells the inventory-api app to get its configuration from the file
98           # rather than querying Consul.
99           args:
100             - "/opt/config.json"
101           resources:
102 {{ include "common.resources" . | indent 12 }}
103           ports:
104           - containerPort: {{ .Values.service.internalPort }}
105           # disable liveness probe when breakpoints set in debugger
106           # so K8s doesn't restart unresponsive container
107           {{- if eq .Values.liveness.enabled true }}
108           livenessProbe:
109             tcpSocket:
110               port: {{ .Values.service.internalPort }}
111             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
112             periodSeconds: {{ .Values.liveness.periodSeconds }}
113           {{ end }}
114           readinessProbe:
115             httpGet:
116               path: {{ .Values.readiness.path }}
117               port: {{ .Values.service.internalPort }}
118               scheme: {{ .Values.readiness.scheme }}
119             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
120             periodSeconds: {{ .Values.readiness.periodSeconds }}
121           volumeMounts:
122             - name: {{  include "common.fullname" . }}-inv-config
123               mountPath: /opt/config.json
124               subPath: config.json
125             - mountPath: /opt/cert/
126               name: tls-info
127             - mountPath: /opt/logs/
128               name: component-log
129           env:
130             - name: CONSUL_HOST
131               value: consul.{{ include "common.namespace" . }}
132         - name: {{ include "common.name" . }}-filebeat
133           env:
134             - name: POD_IP
135               valueFrom:
136                 fieldRef:
137                   apiVersion: v1
138                   fieldPath: status.podIP
139           image: {{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}
140           imagePullPolicy: IfNotPresent
141           resources: {}
142           volumeMounts:
143           - mountPath: /var/log/onap/inventory
144             name: component-log
145           - mountPath: /usr/share/filebeat/data
146             name: filebeat-data
147           - mountPath: /usr/share/filebeat/filebeat.yml
148             name: filebeat-conf
149             subPath: filebeat.yml
150       volumes:
151         - emptyDir: {}
152           name: component-log
153         - emptyDir: {}
154           name: filebeat-data
155         - configMap:
156             defaultMode: 420
157             name: {{ include "common.fullname" . }}-filebeat-configmap
158           name: filebeat-conf
159         - name: {{ include "common.fullname" . }}-inv-config-input
160           configMap:
161             name: {{ include "common.fullname" . }}-configmap
162         - name: {{ include "common.fullname" . }}-inv-config
163           emptyDir:
164             medium: Memory
165         - emptyDir: {}
166           name: tls-info
167       imagePullSecrets:
168       - name: "{{ include "common.namespace" . }}-docker-registry-key"