Merge "[VNFSDK] Use common secret template for postgres credentials"
[oom.git] / kubernetes / sdnc / sdnc-prom / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 Amdocs
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16
17 apiVersion: extensions/v1beta1
18 kind: Deployment
19 metadata:
20   name: {{ include "common.fullname" . }}
21   namespace: {{ include "common.namespace" . }}
22   labels:
23     app: {{ include "common.name" . }}
24     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25     release: {{ include "common.release" . }}
26     heritage: {{ .Release.Service }}
27 spec:
28   replicas: 1
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}
33         release: {{ include "common.release" . }}
34     spec:
35       initContainers:
36       - command:
37         - /root/ready.py
38         args:
39         - --container-name
40         - sdnc
41         - --container-name
42         - consul
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52       containers:
53       - name: {{ include "common.name" . }}
54         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
55         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56         envFrom:
57           - configMapRef:
58               name: {{ include "common.release" . }}-sdnc-env
59         workingDir: "/app"
60         command: [ "bin/prom.sh" ]
61         volumeMounts:
62         - name: localtime
63           mountPath: /etc/localtime
64           readOnly: true
65         - name: prom-config
66           mountPath: /app/config
67         - name: prom-scripts
68           mountPath: /app/bin
69         - name: core-dns-keyfile
70           mountPath: /app/config/coredns
71
72         resources:
73 {{ include "common.resources" . | indent 12 }}
74         {{- if .Values.nodeSelector }}
75         nodeSelector:
76 {{ toYaml .Values.nodeSelector | indent 10 }}
77         {{- end -}}
78         {{- if .Values.affinity }}
79         affinity:
80 {{ toYaml .Values.affinity | indent 10 }}
81         {{- end }}
82       volumes:
83         - name: localtime
84           hostPath:
85             path: /etc/localtime
86         - name: prom-config
87           configMap:
88             name: {{ include "common.fullname" . }}-configmap
89         - name: prom-scripts
90           configMap:
91             name: {{ include "common.fullname" . }}-scripts
92             defaultMode: 0755
93         - name: core-dns-keyfile
94         {{- if .Values.persistence.enabled }}
95           persistentVolumeClaim:
96             claimName: {{ include "common.fullname" . }}
97         {{- else }}
98           emptyDir: {}
99         {{- end }}
100       imagePullSecrets:
101         - name: {{ include "common.namespace" . }}-docker-registry-key"