Add missing naming policy for vFW_NextGen
[oom.git] / kubernetes / aaf / charts / aaf-locate / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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   labels:
19     app: {{ include "common.name" . }}
20     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
21     release: {{ .Release.Name }}
22     heritage: {{ .Release.Service }}
23   name: {{ include "common.fullname" . }}
24   namespace: {{ include "common.namespace" . }}
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       - name: {{ include "common.name" . }}-config-container
35         image: "{{ include "common.repository" . }}/{{ .Values.global.configImage }}"
36         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
37
38         volumeMounts:
39           - mountPath: "/opt/app/osaaf"
40             name: {{ include "common.name" . }}-config-vol
41         env:
42           - name: HOSTNAME
43             value: "{{ .Values.global.cadi.hostname }}"
44           - name: AAF_ENV
45             value: "{{ .Values.global.cadi.aaf_env }}"
46           - name: AAF_REGISTER_AS
47             value: "{{ .Values.aaf_register_as }}"
48           - name: LATITUDE
49             value: "{{ .Values.global.cadi.cadi_latitude }}"
50           - name: LONGITUDE
51             value: "{{ .Values.global.cadi.cadi_longitude }}"
52           - name: CASS_HOST
53             value: "{{ .Values.global.cadi.cass_host }}"
54           - name: AAF_LOCATOR_AS
55             value: "{{ .Values.global.cadi.cadi_locator_as }}"
56       - name: {{ include "common.name" . }}-readiness
57         command:
58         - /root/ready.py
59         args:
60         - --container-name
61         - aaf-service
62         env:
63         - name: NAMESPACE
64           valueFrom:
65             fieldRef:
66               apiVersion: v1
67               fieldPath: metadata.namespace
68         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
69         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
70       containers:
71       - name: {{ include "common.name" . }}
72         command: ["/bin/bash","/opt/app/aaf/bin/locate"]
73         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
74         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
75         volumeMounts:
76         - mountPath: "/opt/app/osaaf"
77           name: {{ include "common.name" . }}-config-vol
78         - mountPath: /etc/localtime
79           name: localtime
80           readOnly: true
81         {{- if eq .Values.liveness.enabled true }}
82         livenessProbe:
83           tcpSocket:
84             port: {{ .Values.service.internalPort }}
85           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
86           periodSeconds: {{ .Values.liveness.periodSeconds }}
87         {{ end -}}
88         readinessProbe:
89           tcpSocket:
90             port: {{ .Values.service.internalPort }}
91           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
92           periodSeconds: {{ .Values.readiness.periodSeconds }}
93         resources:
94 {{ include "common.resources" . | indent 12 }}
95       {{- if .Values.nodeSelector }}
96       nodeSelector:
97 {{ toYaml .Values.nodeSelector | indent 10 }}
98       {{- end -}}
99       {{- if .Values.affinity }}
100       affinity:
101 {{ toYaml .Values.affinity | indent 10 }}
102       {{- end }}
103       volumes:
104       - name: localtime
105         hostPath:
106           path: /etc/localtime
107       - name: {{ include "common.name" . }}-config-vol
108         emptyDir: {}
109       imagePullSecrets:
110       - name: "{{ include "common.namespace" . }}-docker-registry-key"