bf491577622ca0f02f5b822778af64acfdeeb45b
[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             - "-t"
65             - "15"
66           env:
67           - name: NAMESPACE
68             valueFrom:
69               fieldRef:
70                 apiVersion: v1
71                 fieldPath: metadata.namespace
72         - name: init-tls
73           env:
74           - name: aaf_locator_fqdn
75             value: dcae
76           - name: POD_IP
77             valueFrom:
78               fieldRef:
79                 apiVersion: v1
80                 fieldPath: status.podIP
81           image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }}
82           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
83           resources: {}
84           volumeMounts:
85             - mountPath: /opt/app/osaaf
86               name: tls-info
87       containers:
88         - name: {{ include "common.name" . }}
89           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
90           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
91           # Assumes that the Docker image is built with ENTRYPOINT set to
92           # ["java", "-jar", "/opt/inventory-api-x.y.z.jar", "server"]
93           # where "x.y.z" is the version number (matches the Docker image version number)
94           # The arg below adds a parameter, the path to a config file.
95           # This tells the inventory-api app to get its configuration from the file
96           # rather than querying Consul.
97           args:
98             - "/opt/config.json"
99           resources:
100 {{ include "common.resources" . | indent 12 }}
101           ports:
102           - containerPort: {{ .Values.service.internalPort }}
103           # disable liveness probe when breakpoints set in debugger
104           # so K8s doesn't restart unresponsive container
105           {{- if eq .Values.liveness.enabled true }}
106           livenessProbe:
107             tcpSocket:
108               port: {{ .Values.service.internalPort }}
109             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
110             periodSeconds: {{ .Values.liveness.periodSeconds }}
111           {{ end }}
112           readinessProbe:
113             httpGet:
114               path: {{ .Values.readiness.path }}
115               port: {{ .Values.service.internalPort }}
116               scheme: {{ .Values.readiness.scheme }}
117             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
118             periodSeconds: {{ .Values.readiness.periodSeconds }}
119           volumeMounts:
120             - name: {{  include "common.fullname" . }}-inv-config
121               mountPath: /opt/config.json
122               subPath: config.json
123             - mountPath: /opt/cert/
124               name: tls-info
125             - mountPath: /opt/logs/
126               name: component-log
127           env:
128             - name: CONSUL_HOST
129               value: consul.{{ include "common.namespace" . }}
130         - name: {{ include "common.name" . }}-filebeat
131           env:
132             - name: POD_IP
133               valueFrom:
134                 fieldRef:
135                   apiVersion: v1
136                   fieldPath: status.podIP
137           image: {{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}
138           imagePullPolicy: IfNotPresent
139           resources: {}
140           volumeMounts:
141           - mountPath: /var/log/onap/inventory
142             name: component-log
143           - mountPath: /usr/share/filebeat/data
144             name: filebeat-data
145           - mountPath: /usr/share/filebeat/filebeat.yml
146             name: filebeat-conf
147             subPath: filebeat.yml
148       volumes:
149         - emptyDir: {}
150           name: component-log
151         - emptyDir: {}
152           name: filebeat-data
153         - configMap:
154             defaultMode: 420
155             name: {{ include "common.fullname" . }}-filebeat-configmap
156           name: filebeat-conf
157         - name: {{ include "common.fullname" . }}-inv-config-input
158           configMap:
159             name: {{ include "common.fullname" . }}-configmap
160         - name: {{ include "common.fullname" . }}-inv-config
161           emptyDir:
162             medium: Memory
163         - emptyDir: {}
164           name: tls-info
165       imagePullSecrets:
166       - name: "{{ include "common.namespace" . }}-docker-registry-key"