4e3b8cf505bb70f56eb731d9f57f496176bb140e
[oom.git] / kubernetes / sdnc / components / 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: apps/v1
18 kind: Deployment
19 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
20 spec:
21   replicas: 1
22   selector: {{- include "common.selectors" . | nindent 4 }}
23   template:
24     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
25     spec:
26       initContainers:
27       - command:
28         - /app/ready.py
29         args:
30         - --container-name
31         - sdnc
32         - --container-name
33         - consul
34         env:
35         - name: NAMESPACE
36           valueFrom:
37             fieldRef:
38               apiVersion: v1
39               fieldPath: metadata.namespace
40         image: {{ include "repositoryGenerator.image.readiness" . }}
41         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
42         name: {{ include "common.name" . }}-readiness
43       containers:
44       - name: {{ include "common.name" . }}
45         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         envFrom:
48           - configMapRef:
49               name: {{ include "common.release" . }}-sdnc-env
50         workingDir: "/app"
51         command: [ "bin/prom.sh" ]
52         volumeMounts:
53         - name: localtime
54           mountPath: /etc/localtime
55           readOnly: true
56         - name: prom-config
57           mountPath: /app/config
58         - name: prom-scripts
59           mountPath: /app/bin
60         - name: core-dns-keyfile
61           mountPath: /app/config/coredns
62         resources: {{ include "common.resources" . | nindent 10 }}
63       {{- if .Values.nodeSelector }}
64       nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
65       {{- end }}
66       {{- if .Values.affinity }}
67       affinity: {{ toYaml .Values.affinity | nindent 8 }}
68       {{- end }}
69       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
70       volumes:
71         - name: localtime
72           hostPath:
73             path: /etc/localtime
74         - name: prom-config
75           configMap:
76             name: {{ include "common.fullname" . }}-configmap
77         - name: prom-scripts
78           configMap:
79             name: {{ include "common.fullname" . }}-scripts
80             defaultMode: 0755
81         - name: core-dns-keyfile
82         {{- if .Values.persistence.enabled }}
83           persistentVolumeClaim:
84             claimName: {{ include "common.fullname" . }}
85         {{- else }}
86           emptyDir: {}
87         {{- end }}
88       imagePullSecrets:
89         - name: {{ include "common.namespace" . }}-docker-registry-key"