Merge "Fix problem with wrong volume mount names"
[oom.git] / kubernetes / common / network-name-gen / templates / deployment.yaml
1 # 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
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
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: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ include "common.release" . }}
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           {{- include "common.secret.envFromSecret" (dict "global" . "uid" "db-user-creds" "key" "login") | indent 10}}
57         - name: NENG_DB_PASS
58           {{- include "common.secret.envFromSecret" (dict "global" . "uid" "db-user-creds" "key" "password") | indent 10}}
59         - 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 }}"
77         - 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
84         resources:
85 {{ include "common.resources" . | indent 12 }}
86         {{- 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 }}
94       volumes:
95       - name: certs
96         secret:
97             secretName: {{ include "common.release" . }}-aai-keystore
98       imagePullSecrets:
99       - name: "{{ include "common.namespace" . }}-docker-registry-key"