blob: 2f9cd6a158c06e33dfead0a9aa68af8fcb62d58b [file] [log] [blame]
bt29832f7e05a2018-09-19 22:49:19 -06001# Copyright (C) 2018 AT&T Intellectual Property.
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.
14
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
18 name: {{ include "common.fullname" . }}
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
bt29832f7e05a2018-09-19 22:49:19 -060024 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010031 release: {{ include "common.release" . }}
bt29832f7e05a2018-09-19 22:49:19 -060032 spec:
33 initContainers:
34 - command:
35 - /root/ready.py
36 args:
37 - --container-name
38 - {{ index .Values "mariadb-galera" "nameOverride" }}
39 env:
40 - name: NAMESPACE
41 valueFrom:
42 fieldRef:
43 apiVersion: v1
44 fieldPath: metadata.namespace
45 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 name: {{ include "common.name" . }}-readiness
48 containers:
49 - name: {{ include "common.name" . }}
50 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 env:
53 - name: SPRING_PROFILE
54 value: "{{ .Values.config.springProfile }}"
55 - name: NENG_DB_USER
Krzysztof Opasiak5b518812020-01-22 00:08:05 +010056 {{- include "common.secret.envFromSecret" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10}}
bt29832f7e05a2018-09-19 22:49:19 -060057 - name: NENG_DB_PASS
Krzysztof Opasiak5b518812020-01-22 00:08:05 +010058 {{- include "common.secret.envFromSecret" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10}}
bt29832f7e05a2018-09-19 22:49:19 -060059 - name: NENG_DB_URL
60 value: {{ .Values.config.dbUrl }}
61 - name: POL_CLIENT_AUTH
62 value: "{{ .Values.config.polClientAuth }}"
63 - name: POL_BASIC_AUTH
64 value: "{{ .Values.config.polBasicAuth }}"
65 - name: POL_URL
66 value: "{{ .Values.config.polUrl }}"
67 - name: POL_ENV
68 value: "{{ .Values.config.polEnv }}"
69 - name: POL_REQ_ID
70 value: "{{ .Values.config.polReqId }}"
71 - name: AAI_CERT_PASS
72 value: "{{ .Values.config.aaiCertPass }}"
73 - name: AAI_CERT_PATH
74 value: "{{ .Values.config.aaiCertPath }}"
75 - name: AAI_URI
76 value: "{{ .Values.config.aaiUri }}"
Alexis de Talhouëtdb36b422018-09-27 22:43:18 +020077 - name: AAI_AUTH
78 value: "{{ .Values.config.aaiAuth }}"
79 volumeMounts:
80 - name: certs
81 mountPath: /opt/etc/config/aai_keystore
82 subPath: aai_keystore
83 readOnly: true
bt29832f7e05a2018-09-19 22:49:19 -060084 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000085{{ include "common.resources" . | indent 12 }}
bt29832f7e05a2018-09-19 22:49:19 -060086 {{- if .Values.nodeSelector }}
87 nodeSelector:
88{{ toYaml .Values.nodeSelector | indent 10 }}
89 {{- end -}}
90 {{- if .Values.affinity }}
91 affinity:
92{{ toYaml .Values.affinity | indent 10 }}
93 {{- end }}
Alexis de Talhouëtdb36b422018-09-27 22:43:18 +020094 volumes:
95 - name: certs
96 secret:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010097 secretName: {{ include "common.release" . }}-aai-keystore
bt29832f7e05a2018-09-19 22:49:19 -060098 imagePullSecrets:
99 - name: "{{ include "common.namespace" . }}-docker-registry-key"