blob: dac4e0d4ce8b9ef16016bd3463760b06bcec1d62 [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 "+" "_" }}
23 release: {{ .Release.Name }}
24 heritage: {{ .Release.Service }}
25spec:
26 replicas: {{ .Values.replicaCount }}
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}
31 release: {{ .Release.Name }}
32 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
56 value: {{ index .Values "mariadb-galera" "config" "userName" }}
57 - name: NENG_DB_PASS
58 valueFrom:
59 secretKeyRef:
60 name: {{ template "common.fullname" . }}
61 key: db-root-password
62 - name: NENG_DB_URL
63 value: {{ .Values.config.dbUrl }}
64 - name: POL_CLIENT_AUTH
65 value: "{{ .Values.config.polClientAuth }}"
66 - name: POL_BASIC_AUTH
67 value: "{{ .Values.config.polBasicAuth }}"
68 - name: POL_URL
69 value: "{{ .Values.config.polUrl }}"
70 - name: POL_ENV
71 value: "{{ .Values.config.polEnv }}"
72 - name: POL_REQ_ID
73 value: "{{ .Values.config.polReqId }}"
74 - name: AAI_CERT_PASS
75 value: "{{ .Values.config.aaiCertPass }}"
76 - name: AAI_CERT_PATH
77 value: "{{ .Values.config.aaiCertPath }}"
78 - name: AAI_URI
79 value: "{{ .Values.config.aaiUri }}"
Alexis de Talhouëtdb36b422018-09-27 22:43:18 +020080 - name: AAI_AUTH
81 value: "{{ .Values.config.aaiAuth }}"
82 volumeMounts:
83 - name: certs
84 mountPath: /opt/etc/config/aai_keystore
85 subPath: aai_keystore
86 readOnly: true
bt29832f7e05a2018-09-19 22:49:19 -060087 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000088{{ include "common.resources" . | indent 12 }}
bt29832f7e05a2018-09-19 22:49:19 -060089 {{- if .Values.nodeSelector }}
90 nodeSelector:
91{{ toYaml .Values.nodeSelector | indent 10 }}
92 {{- end -}}
93 {{- if .Values.affinity }}
94 affinity:
95{{ toYaml .Values.affinity | indent 10 }}
96 {{- end }}
Alexis de Talhouëtdb36b422018-09-27 22:43:18 +020097 volumes:
98 - name: certs
99 secret:
100 secretName: {{ .Release.Name}}-aai-keystore
bt29832f7e05a2018-09-19 22:49:19 -0600101 imagePullSecrets:
102 - name: "{{ include "common.namespace" . }}-docker-registry-key"