Merge "Helm charts for name-gen micro-service."
[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: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
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 }}"
80         resources:
81 {{ toYaml .Values.resources | indent 12 }}
82         {{- if .Values.nodeSelector }}
83         nodeSelector:
84 {{ toYaml .Values.nodeSelector | indent 10 }}
85         {{- end -}}
86         {{- if .Values.affinity }}
87         affinity:
88 {{ toYaml .Values.affinity | indent 10 }}
89         {{- end }}
90
91       imagePullSecrets:
92       - name: "{{ include "common.namespace" . }}-docker-registry-key"