blob: 07390097e71611069766435fb05dcf618bafd3c0 [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +00001# Copyright © 2018 AT&T USA
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00002#
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.
Mike Elliottd32d36e2018-02-12 15:54:03 -050014apiVersion: extensions/v1beta1
15kind: Deployment
16metadata:
Mandeep Khindaa57d8dd2018-03-09 14:29:37 +000017 name: {{ include "common.fullname" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050018 namespace: {{ include "common.namespace" . }}
19 labels:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000020 app: {{ include "common.fullname" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050021 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010022 release: {{ include "common.release" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050023spec:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000024 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 }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050031 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Mike Elliottd32d36e2018-02-12 15:54:03 -050036 spec:
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010037 initContainers: {{ include "so.certificate.container_importer" . | nindent 6 }}
38 - name: {{ include "common.name" . }}-readiness
39 command:
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000040 - /root/job_complete.py
jmacc4f04d32018-10-12 18:24:24 +000041 args:
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000042 - --job-name
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010043 - {{ include "common.release" . }}-so-mariadb-config-job
jmacc4f04d32018-10-12 18:24:24 +000044 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 name: {{ include "common.name" . }}-readiness
Mike Elliottd32d36e2018-02-12 15:54:03 -050053 containers:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000054 - name: {{ include "common.name" . }}
55 image: {{ include "common.repository" . }}/{{ .Values.image }}
56 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000057{{ include "common.resources" . | indent 12 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000058 env:
59 - name: DB_HOST
60 valueFrom:
61 secretKeyRef:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010062 name: {{ include "common.release" . }}-so-db-secrets
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000063 key: mariadb.readwrite.host
64 - name: DB_PORT
65 valueFrom:
66 secretKeyRef:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010067 name: {{ include "common.release" . }}-so-db-secrets
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000068 key: mariadb.readwrite.port
69 - name: DB_USERNAME
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010070 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000071 - name: DB_PASSWORD
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010072 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000073 - name: DB_ADMIN_USERNAME
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010074 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000075 - name: DB_ADMIN_PASSWORD
Krzysztof Opasiakc53ff542020-03-28 02:14:37 +010076 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }}
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +000077 {{- if eq .Values.global.security.aaf.enabled true }}
78 - name: TRUSTSTORE
79 value: /app/org.onap.so.trust.jks
80 - name: TRUSTSTORE_PASSWORD
81 valueFrom:
82 secretKeyRef:
83 name: {{ .Release.Name}}-so-client-certs-secret
84 key: trustStorePassword
85 - name: KEYSTORE
86 value: /app/org.onap.so.jks
87 - name: KEYSTORE_PASSWORD
88 valueFrom:
89 secretKeyRef:
90 name: {{ .Release.Name}}-so-client-certs-secret
91 key: keyStorePassword
92 {{- end }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000093 envFrom:
94 - configMapRef:
95 name: {{ include "common.fullname" . }}-configmap
jmacc4f04d32018-10-12 18:24:24 +000096 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010097 volumeMounts: {{ include "so.certificate.volume-mounts" . | nindent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000098 - name: logs
99 mountPath: /app/logs
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000100 - name: config
101 mountPath: /app/config
102 readOnly: true
sunilb0a97ab22020-02-25 10:18:48 +0530103 - name: {{ include "common.fullname" . }}-logs
104 mountPath: /var/log/onap
Ramesh Parthasarathy95dc1c92020-02-05 17:02:28 +0000105{{ include "helpers.livenessProbe" .| indent 8 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000106 ports:
107 - containerPort: {{ index .Values.containerPort }}
108 name: {{ .Values.service.portName }}
109 protocol: TCP
sunilb0a97ab22020-02-25 10:18:48 +0530110 # Filebeat sidecar container
111 - name: {{ include "common.name" . }}-filebeat-onap
112 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
113 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
114 volumeMounts:
115 - name: {{ include "common.fullname" . }}-filebeat-conf
116 mountPath: /usr/share/filebeat/filebeat.yml
117 subPath: filebeat.yml
118 - name: {{ include "common.fullname" . }}-data-filebeat
119 mountPath: /usr/share/filebeat/data
120 - name: logs
121 mountPath: /var/log/onap/so
122 - name: {{ include "common.fullname" . }}-logs
123 mountPath: /var/log/onap
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100124 volumes: {{ include "so.certificate.volumes" . | nindent 6 }}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000125 - name: logs
126 emptyDir: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +0000127 - name: config
128 configMap:
129 name: {{ include "common.fullname" . }}-app-configmap
sunilb0a97ab22020-02-25 10:18:48 +0530130 - name: {{ include "common.fullname" . }}-log-conf
131 configMap:
132 name: {{ include "common.fullname" . }}-log
133 - name: {{ include "common.fullname" . }}-filebeat-conf
134 configMap:
135 name: {{ .Release.Name }}-so-filebeat-configmap
136 - name: {{ include "common.fullname" . }}-data-filebeat
137 emptyDir: {}
138 - name: {{ include "common.fullname" . }}-logs
139 emptyDir: {}
Mike Elliottd32d36e2018-02-12 15:54:03 -0500140 imagePullSecrets:
vaibhav16dec0da88292018-08-13 06:10:27 +0000141 - name: "{{ include "common.namespace" . }}-docker-registry-key"