blob: 3d7b24226eef1e198fcc06b7b79888ff973623e8 [file] [log] [blame]
Jack Lucas6fae7632019-01-25 11:46:00 -05001#============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
18apiVersion: extensions/v1beta1
19kind: Deployment
20metadata:
21 name: {{ include "common.fullname" . }}
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
Jack Lucas6fae7632019-01-25 11:46:00 -050027 heritage: {{ .Release.Service }}
28spec:
29 replicas: 1
30 template:
31 metadata:
32 labels:
33 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010034 release: {{ include "common.release" . }}
Jack Lucas6fae7632019-01-25 11:46:00 -050035 spec:
36 initContainers:
37 - name: {{ include "common.name" . }}-readiness
38 image: {{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}
39 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
40 command:
41 - /root/ready.py
42 args:
43 - --container-name
44 - "dcae-inventory-api"
45 - --container-name
46 - "message-router"
47 - --container-name
48 - "sdc-dcae-be"
49 - "-t"
50 - "45"
51 env:
52 - name: NAMESPACE
53 valueFrom:
54 fieldRef:
55 apiVersion: v1
56 fieldPath: metadata.namespace
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000057 - name: init-tls
58 env:
59 - name: POD_IP
60 valueFrom:
61 fieldRef:
62 apiVersion: v1
63 fieldPath: status.podIP
64 image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }}
65 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 resources: {}
67 volumeMounts:
Jack Lucas5bf88082020-03-30 16:06:13 -040068 - mountPath: /opt/app/osaaf
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000069 name: tls-info
Jack Lucas6fae7632019-01-25 11:46:00 -050070 containers:
71 - name: {{ include "common.name" . }}
Jack Lucas4c4ba442019-02-12 17:09:46 -050072 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Jack Lucas6fae7632019-01-25 11:46:00 -050073 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Jack Lucas6fae7632019-01-25 11:46:00 -050074 resources:
75{{ include "common.resources" . | indent 12 }}
76 # disable liveness probe when breakpoints set in debugger
77 # so K8s doesn't restart unresponsive container
78 {{- if eq .Values.liveness.enabled true }}
79 livenessProbe:
80 exec:
81 command: [{{ .Values.liveness.script }}]
82 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
83 periodSeconds: {{ .Values.liveness.periodSeconds }}
84 {{ end }}
85 readinessProbe:
86 exec:
87 command: [{{ .Values.readiness.script }}]
88 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
89 periodSeconds: {{ .Values.readiness.periodSeconds }}
90 volumeMounts:
91 - name: {{ include "common.fullname" . }}-sch-config
92 mountPath: /opt/config.json
93 subPath: config.json
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000094 # NOTE: This is tied to the PATH_TO_CACERT env variable
95 - mountPath: /opt/cert/
96 name: tls-info
Jack Lucas6fae7632019-01-25 11:46:00 -050097 env:
98 - name: CONSUL_HOST
99 value: consul.{{ include "common.namespace" . }}
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +0000100 - name: PATH_TO_CACERT
101 value: "/opt/cert/cacert.pem"
102 - name: SCH_ARGS
103 value: "prod /opt/config.json"
Jack Lucas6fae7632019-01-25 11:46:00 -0500104 volumes:
105 - name: {{ include "common.fullname" . }}-sch-config
106 configMap:
107 name: {{ include "common.fullname" . }}-configmap
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +0000108 - emptyDir: {}
109 name: tls-info
Jack Lucas6fae7632019-01-25 11:46:00 -0500110 imagePullSecrets:
111 - name: "{{ include "common.namespace" . }}-docker-registry-key"