blob: 6fbbf1c089dee4403a8bdc5916afa0c83e672e0a [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright (c) 2017 Amdocs, Bell Canada
3# Modifications Copyright (c) 2018 AT&T
4# Modifications Copyright (c) 2020 Nokia
Sylvain Desbureaux331f0042021-01-18 11:38:49 +01005# Modifications Copyright (c) 2021 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01006#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010018*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010019
20apiVersion: apps/v1
21kind: Deployment
22metadata:
23 name: {{ include "common.fullname" . }}
24 namespace: {{ include "common.namespace" . }}
25 labels:
26 app: {{ include "common.name" . }}
27 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
28 release: {{ include "common.release" . }}
29 heritage: {{ .Release.Service }}
30spec:
31 replicas: {{ .Values.replicaCount }}
32 selector:
33 matchLabels:
34 app: {{ include "common.name" . }}
35 template:
36 metadata:
37 labels:
38 app: {{ include "common.name" . }}
39 release: {{ include "common.release" . }}
40 name: {{ include "common.name" . }}
41 annotations:
42 checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010043 {{- if .Values.global.msbEnabled }}
44 {{ $values := .Values }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010045 msb.onap.org/service-info: '[
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010046 {{- range $api_endpoint := $values.aai_enpoints -}}
47 {{- range $api_version := $values.api_list }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010048 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010049 "serviceName": "_{{ $api_endpoint.name }}",
50 "version": "v{{ $api_version }}",
51 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010052 "protocol": "REST",
53 "port": "8447",
54 "enable_ssl": true,
55 "lb_policy":"ip_hash",
56 "visualRange": "1",
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010057 "path": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010058 },
59 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010060 "serviceName": "{{ $api_endpoint.name }}",
61 "version": "v{{ $api_version }}",
62 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010063 "protocol": "REST",
64 "port": "8447",
65 "enable_ssl": true,
66 "lb_policy":"ip_hash",
67 "visualRange": "1"
68 },
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010069 {{- end }}
70 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010071 ]'
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010072 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010073 spec:
74 hostname: aai-resources
Sylvain Desbureaux70070412020-11-09 21:58:48 +010075 initContainers:
76 - command:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010077 {{- if .Values.global.jobs.migration.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010078 - /app/ready.py
79 args:
80 - --job-name
81 - {{ include "common.release" . }}-aai-graphadmin-migration
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010082 {{- else }}
83 {{- if .Values.global.jobs.createSchema.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010084 - /app/ready.py
85 args:
86 - --job-name
87 - {{ include "common.release" . }}-aai-graphadmin-create-db-schema
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010088 {{- else }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010089 - /app/ready.py
90 args:
91 - --container-name
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010092 {{- if .Values.global.cassandra.localCluster }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010093 - aai-cassandra
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010094 {{- else }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010095 - cassandra
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010096 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010097 - --container-name
98 - aai-schema-service
Sylvain Desbureaux6212bb22021-01-18 11:43:33 +010099 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100100 env:
101 - name: NAMESPACE
102 valueFrom:
103 fieldRef:
104 apiVersion: v1
105 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100106 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100107 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
108 name: {{ include "common.name" . }}-readiness
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100109 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100110 containers:
111 - name: {{ include "common.name" . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100112 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100113 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
114 env:
115 - name: LOCAL_USER_ID
116 value: {{ .Values.global.config.userId | quote }}
117 - name: LOCAL_GROUP_ID
118 value: {{ .Values.global.config.groupId | quote }}
Harish Venkata Kajurb06c9af2021-02-01 08:59:46 -0500119 - name: POST_JAVA_OPTS
120 value: '-Djavax.net.ssl.trustStore=/opt/app/aai-resources/resources/aaf/truststoreONAPall.jks -Djavax.net.ssl.trustStorePassword=changeit'
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100121 volumeMounts:
122 - mountPath: /etc/localtime
123 name: localtime
124 readOnly: true
125 - mountPath: /opt/app/aai-resources/resources/etc/appprops/janusgraph-realtime.properties
126 name: {{ include "common.fullname" . }}-config
127 subPath: janusgraph-realtime.properties
128 - mountPath: /opt/app/aai-resources/resources/etc/appprops/janusgraph-cached.properties
129 name: {{ include "common.fullname" . }}-config
130 subPath: janusgraph-cached.properties
131 - mountPath: /opt/app/aai-resources/resources/etc/appprops/aaiconfig.properties
132 name: {{ include "common.fullname" . }}-config
133 subPath: aaiconfig.properties
134 - mountPath: /opt/aai/logroot/AAI-RES
135 name: {{ include "common.fullname" . }}-logs
136 - mountPath: /opt/app/aai-resources/resources/logback.xml
137 name: {{ include "common.fullname" . }}-config
138 subPath: logback.xml
139 - mountPath: /opt/app/aai-resources/resources/localhost-access-logback.xml
140 name: {{ include "common.fullname" . }}-config
141 subPath: localhost-access-logback.xml
142 - mountPath: /opt/app/aai-resources/resources/etc/auth/realm.properties
143 name: {{ include "common.fullname" . }}-config
144 subPath: realm.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100145 - mountPath: /opt/app/aai-resources/resources/aaf/org.onap.aai.keyfile
146 name: {{ include "common.fullname" . }}-aaf-certs
147 subPath: org.onap.aai.keyfile
148 - mountPath: /opt/app/aai-resources/resources/aaf/bath_config.csv
149 name: {{ include "common.fullname" . }}-aaf-certs
150 subPath: bath_config.csv
151 - mountPath: /opt/app/aai-resources/resources/aaf/org.onap.aai.props
152 name: {{ include "common.fullname" . }}-aaf-properties
153 subPath: org.onap.aai.props
154 - mountPath: /opt/app/aai-resources/resources/aaf/org.osaaf.location.props
155 name: {{ include "common.fullname" . }}-aaf-properties
156 subPath: org.osaaf.location.props
157 - mountPath: /opt/app/aai-resources/resources/aaf/permissions.properties
158 name: {{ include "common.fullname" . }}-aaf-properties
159 subPath: permissions.properties
160 - mountPath: /opt/app/aai-resources/resources/cadi.properties
161 name: {{ include "common.fullname" . }}-aaf-properties
162 subPath: cadi.properties
163 - mountPath: /opt/app/aai-resources/resources/aaf/org.onap.aai.p12
164 name: {{ include "common.fullname" . }}-aaf-certs
165 subPath: org.onap.aai.p12
166 - mountPath: /opt/app/aai-resources/resources/aaf/truststoreONAPall.jks
167 name: aai-common-aai-auth-mount
168 subPath: truststoreONAPall.jks
169 - mountPath: /opt/app/aai-resources/resources/application.properties
170 name: {{ include "common.fullname" . }}-config
171 subPath: application.properties
172 - mountPath: /opt/app/aai-resources/resources/application-keycloak.properties
173 name: {{ include "common.fullname" . }}-config
174 subPath: application-keycloak.properties
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100175 {{- $global := . }}
176 {{- range $job := .Values.global.config.auth.files }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100177 - mountPath: /opt/app/aai-resources/resources/etc/auth/{{ . }}
178 name: {{ include "common.fullname" $global }}-auth-truststore-sec
179 subPath: {{ . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100180 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100181 ports:
182 - containerPort: {{ .Values.service.internalPort }}
183 - containerPort: {{ .Values.service.internalPort2 }}
184 # disable liveness probe when breakpoints set in debugger
185 # so K8s doesn't restart unresponsive container
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100186 {{- if .Values.liveness.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100187 livenessProbe:
188 tcpSocket:
189 port: {{ .Values.service.internalPort }}
190 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
191 periodSeconds: {{ .Values.liveness.periodSeconds }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100192 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100193 readinessProbe:
194 tcpSocket:
195 port: {{ .Values.service.internalPort }}
196 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
197 periodSeconds: {{ .Values.readiness.periodSeconds }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100198 resources: {{ include "common.resources" . | nindent 12 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100199 {{- if .Values.nodeSelector }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100200 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100201 {{- end }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100202 {{- if .Values.affinity }}
203 affinity: {{ toYaml .Values.affinity | nindent 8 }}
204 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100205 # side car containers
206 - name: filebeat-onap
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100207 image: {{ include "repositoryGenerator.image.logging" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100208 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
209 volumeMounts:
210 - mountPath: /usr/share/filebeat/filebeat.yml
211 subPath: filebeat.yml
212 name: filebeat-conf
213 - mountPath: /var/log/onap
214 name: {{ include "common.fullname" . }}-logs
215 - mountPath: /usr/share/filebeat/data
216 name: {{ include "common.fullname" . }}-filebeat
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100217 resources: {{ include "common.resources" . | nindent 12 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100218 volumes:
219 - name: aai-common-aai-auth-mount
220 secret:
221 secretName: aai-common-aai-auth
222 - name: localtime
223 hostPath:
224 path: /etc/localtime
225 - name: filebeat-conf
226 configMap:
227 name: aai-filebeat
228 - name: {{ include "common.fullname" . }}-logs
229 emptyDir: {}
230 - name: {{ include "common.fullname" . }}-filebeat
231 emptyDir: {}
232 - name: {{ include "common.fullname" . }}-config
233 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100234 name: {{ include "common.fullname" . }}-configmap
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100235 - name: {{ include "common.fullname" . }}-aaf-properties
236 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100237 name: {{ include "common.fullname" . }}-aaf-props
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100238 - name: {{ include "common.fullname" . }}-aaf-certs
239 secret:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100240 secretName: {{ include "common.fullname" . }}-aaf-keys
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100241 - name: {{ include "common.fullname" . }}-auth-truststore-sec
242 secret:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100243 secretName: aai-common-truststore
244 items:
245 {{- range $job := .Values.global.config.auth.files }}
246 - key: {{ . }}
247 path: {{ . }}
248 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100249 restartPolicy: {{ .Values.restartPolicy }}
250 imagePullSecrets:
251 - name: "{{ include "common.namespace" . }}-docker-registry-key"