blob: a36164d1647bc82222811e1ffdff2bf65c85716a [file] [log] [blame]
Jack Lucaseea60d52018-08-23 21:31:42 +00001#============LICENSE_START========================================================
2# ================================================================================
Jack Lucas332b5e72019-02-06 16:03:13 -05003# Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
Jack Lucaseea60d52018-08-23 21:31:42 +00004# Modifications Copyright © 2018 Amdocs, Bell Canada
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18
19apiVersion: extensions/v1beta1
20kind: Deployment
21metadata:
22 name: {{ include "common.fullname" . }}
23 namespace: {{ include "common.namespace" . }}
24 labels:
25 app: {{ include "common.name" . }}
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010027 release: {{ include "common.release" . }}
Jack Lucaseea60d52018-08-23 21:31:42 +000028 heritage: {{ .Release.Service }}
29spec:
30 replicas: 1
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Jack Lucaseea60d52018-08-23 21:31:42 +000036 spec:
37 initContainers:
38 - name: {{ include "common.name" . }}-readiness
39 image: {{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}
40 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
41 command:
42 - /root/ready.py
43 args:
44 - --container-name
45 - dcae-cloudify-manager
46 - --container-name
47 - consul-server
48 - --container-name
49 - msb-discovery
50 - --container-name
51 - kube2msb
Jack Lucas6fae7632019-01-25 11:46:00 -050052 - --container-name
53 - dcae-config-binding-service
Jack Lucas332b5e72019-02-06 16:03:13 -050054 - --container-name
55 - dcae-db
Jack Lucasc6861312020-03-03 15:57:59 -050056 - --container-name
57 - dcae-inventory-api
Jack Lucaseea60d52018-08-23 21:31:42 +000058 - "-t"
59 - "15"
Jack Lucasc6861312020-03-03 15:57:59 -050060
Jack Lucaseea60d52018-08-23 21:31:42 +000061 env:
62 - name: NAMESPACE
63 valueFrom:
64 fieldRef:
65 apiVersion: v1
66 fieldPath: metadata.namespace
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000067 - name: init-tls
68 env:
69 - name: POD_IP
70 valueFrom:
71 fieldRef:
72 apiVersion: v1
73 fieldPath: status.podIP
Jack Lucasc70bc7e2019-09-23 09:02:31 -040074 - name: aaf_locator_fqdn
75 value: dcae
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000076 image: {{ .Values.global.tlsRepository }}/{{ .Values.global.tlsImage }}
77 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
78 resources: {}
79 volumeMounts:
Jack Lucasc70bc7e2019-09-23 09:02:31 -040080 - mountPath: /opt/app/osaaf
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000081 name: tls-info
Jack Lucaseea60d52018-08-23 21:31:42 +000082 containers:
83 - name: {{ include "common.name" . }}
84 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
85 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhav_16decdb582fa2018-09-20 12:32:47 +000086 resources:
87{{ include "common.resources" . | indent 12 }}
Jack Lucaseea60d52018-08-23 21:31:42 +000088 volumeMounts:
89 - mountPath: /inputs
90 name: {{ include "common.fullname" . }}-dcae-inputs
91 - mountPath: /dcae-configs
92 name: {{ include "common.fullname" . }}-dcae-config
93 - mountPath: /etc/localtime
94 name: localtime
95 readOnly: true
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +000096 - mountPath: /certs
97 name: tls-info
98 readOnly: true
Jack Lucaseea60d52018-08-23 21:31:42 +000099 env:
100 - name: CMADDR
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +0000101 value: {{ .Values.config.address.cm.host }}
Jack Lucaseea60d52018-08-23 21:31:42 +0000102 - name: CMPASS
103 valueFrom:
104 secretKeyRef:
105 name: {{ include "common.name" . }}-cmpass
106 key: password
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +0000107 - name: CMPROTO
108 value: {{ .Values.config.address.cm.proto }}
109 - name: CMPORT
110 value: !!string {{ .Values.config.address.cm.port }}
Jack Lucaseea60d52018-08-23 21:31:42 +0000111 - name: CONSUL
112 value: {{ .Values.config.address.consul.host }}:{{ .Values.config.address.consul.port }}
113 - name: DCAE_NAMESPACE
114 value: {{ .Values.dcae_ns | default "" }}
115 - name: ONAP_NAMESPACE
116 value: {{ include "common.namespace" . }}
117 volumes:
118 - name: {{ include "common.fullname" . }}-dcae-inputs
119 configMap:
120 name: {{ include "common.fullname" . }}-dcae-inputs
121 - name: {{ include "common.fullname" . }}-dcae-config
122 configMap:
123 name: {{ include "common.fullname" . }}-dcae-config
124 - name: localtime
125 hostPath:
126 path: /etc/localtime
Vijay Venkatesh Kumara4535c92019-08-02 01:45:23 +0000127 - name: tls-info
128 emptyDir: {}
Jack Lucaseea60d52018-08-23 21:31:42 +0000129 imagePullSecrets:
vaibhav_16decdb582fa2018-09-20 12:32:47 +0000130 - name: "{{ include "common.namespace" . }}-docker-registry-key"