blob: ca6be722731902330d8266fe81c99b53d732459b [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00001# Copyright © 2018 AT&T USA
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14apiVersion: extensions/v1beta1
15kind: Deployment
16metadata:
17 name: {{ include "common.fullname" . }}
18 namespace: {{ include "common.namespace" . }}
19 labels:
20 app: {{ include "common.fullname" . }}
21 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010022 release: {{ include "common.release" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000023spec:
24 replicas: {{ index .Values.replicaCount }}
25 minReadySeconds: {{ index .Values.minReadySeconds }}
26 strategy:
27 type: {{ index .Values.updateStrategy.type }}
28 rollingUpdate:
29 maxUnavailable: {{ index .Values.updateStrategy.maxUnavailable }}
30 maxSurge: {{ index .Values.updateStrategy.maxSurge }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000036 spec:
jmacc4f04d32018-10-12 18:24:24 +000037 initContainers:
38 - command:
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000039 - /root/job_complete.py
jmacc4f04d32018-10-12 18:24:24 +000040 args:
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000041 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010042 - {{ include "common.release" . }}-so-mariadb-config-job
jmacc4f04d32018-10-12 18:24:24 +000043 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
49 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51 name: {{ include "common.name" . }}-readiness
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000052 containers:
53 - name: {{ include "common.name" . }}
54 image: {{ include "common.repository" . }}/{{ .Values.image }}
55 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000056{{ include "common.resources" . | indent 12 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000057 env:
58 - name: DB_HOST
59 valueFrom:
60 secretKeyRef:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010061 name: {{ include "common.release" . }}-so-db-secrets
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000062 key: mariadb.readwrite.host
63 - name: DB_PORT
64 valueFrom:
65 secretKeyRef:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010066 name: {{ include "common.release" . }}-so-db-secrets
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000067 key: mariadb.readwrite.port
68 - name: DB_USERNAME
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010069 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000070 - name: DB_PASSWORD
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010071 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000072 - name: DB_ADMIN_USERNAME
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010073 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000074 - name: DB_ADMIN_PASSWORD
Krzysztof Opasiakc34ed602020-03-24 23:10:53 +010075 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +000076 {{- if eq .Values.global.security.aaf.enabled true }}
77 - name: TRUSTSTORE
78 value: /app/org.onap.so.trust.jks
79 - name: TRUSTSTORE_PASSWORD
80 valueFrom:
81 secretKeyRef:
82 name: {{ .Release.Name}}-so-client-certs-secret
83 key: trustStorePassword
84 - name: KEYSTORE
85 value: /app/org.onap.so.jks
86 - name: KEYSTORE_PASSWORD
87 valueFrom:
88 secretKeyRef:
89 name: {{ .Release.Name}}-so-client-certs-secret
90 key: keyStorePassword
91 {{- end }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000092 envFrom:
93 - configMapRef:
94 name: {{ include "common.fullname" . }}-configmap
jmacc4f04d32018-10-12 18:24:24 +000095 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000096 volumeMounts:
97 - name: logs
98 mountPath: /app/logs
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000099 - name: config
100 mountPath: /app/config
101 readOnly: true
sunilb0a97ab22020-02-25 10:18:48 +0530102 - name: {{ include "common.fullname" . }}-logs
103 mountPath: /var/log/onap
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000104{{ include "helpers.livenessProbe" .| indent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000105 ports:
106 - containerPort: {{ index .Values.containerPort }}
107 name: {{ .Values.service.portName }}
108 protocol: TCP
sunilb0a97ab22020-02-25 10:18:48 +0530109 # Filebeat sidecar container
110 - name: {{ include "common.name" . }}-filebeat-onap
111 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
112 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
113 volumeMounts:
114 - name: {{ include "common.fullname" . }}-filebeat-conf
115 mountPath: /usr/share/filebeat/filebeat.yml
116 subPath: filebeat.yml
117 - name: {{ include "common.fullname" . }}-data-filebeat
118 mountPath: /usr/share/filebeat/data
119 - name: logs
120 mountPath: /var/log/onap/so
121 - name: {{ include "common.fullname" . }}-logs
122 mountPath: /var/log/onap
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000123 volumes:
124 - name: logs
125 emptyDir: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000126 - name: config
127 configMap:
128 name: {{ include "common.fullname" . }}-app-configmap
sunilb0a97ab22020-02-25 10:18:48 +0530129 - name: {{ include "common.fullname" . }}-log-conf
130 configMap:
131 name: {{ include "common.fullname" . }}-log
132 - name: {{ include "common.fullname" . }}-filebeat-conf
133 configMap:
134 name: {{ .Release.Name }}-so-filebeat-configmap
135 - name: {{ include "common.fullname" . }}-data-filebeat
136 emptyDir: {}
137 - name: {{ include "common.fullname" . }}-logs
138 emptyDir: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000139 imagePullSecrets:
vaibhav16dec0da88292018-08-13 06:10:27 +0000140 - name: "{{ include "common.namespace" . }}-docker-registry-key"