blob: 1853ab937e6a9280d55f40c4236725118354489e [file] [log] [blame]
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +01001{{/*
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -04002# 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.
Krzysztof Opasiakab7a6bb2020-03-24 03:30:51 +010015*/}}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040016
Grzegorz-Lis1318a772020-07-23 15:08:43 +020017apiVersion: apps/v1
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040018kind: Deployment
Alexander Dehn9b797d62020-04-21 09:53:50 +000019metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040020spec:
Grzegorz-Lis1318a772020-07-23 15:08:43 +020021 selector:
22 matchLabels:
23 app: {{ include "common.name" . }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040024 replicas: 1
Alexander Dehn9b797d62020-04-21 09:53:50 +000025 selector: {{- include "common.selectors" . | nindent 4 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040026 template:
Alexander Dehn9b797d62020-04-21 09:53:50 +000027 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040028 spec:
29 initContainers:
30 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020031 - /app/ready.py
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040032 args:
33 - --container-name
34 - sdnc
35 - --container-name
36 - consul
37 env:
38 - name: NAMESPACE
39 valueFrom:
40 fieldRef:
41 apiVersion: v1
42 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020043 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040044 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
45 name: {{ include "common.name" . }}-readiness
46 containers:
47 - name: {{ include "common.name" . }}
48 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
49 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50 envFrom:
51 - configMapRef:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010052 name: {{ include "common.release" . }}-sdnc-env
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040053 workingDir: "/app"
54 command: [ "bin/prom.sh" ]
55 volumeMounts:
56 - name: localtime
57 mountPath: /etc/localtime
58 readOnly: true
59 - name: prom-config
60 mountPath: /app/config
61 - name: prom-scripts
62 mountPath: /app/bin
63 - name: core-dns-keyfile
64 mountPath: /app/config/coredns
65
66 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000067{{ include "common.resources" . | indent 12 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040068 {{- if .Values.nodeSelector }}
69 nodeSelector:
70{{ toYaml .Values.nodeSelector | indent 10 }}
71 {{- end -}}
72 {{- if .Values.affinity }}
73 affinity:
74{{ toYaml .Values.affinity | indent 10 }}
75 {{- end }}
76 volumes:
77 - name: localtime
78 hostPath:
79 path: /etc/localtime
80 - name: prom-config
81 configMap:
82 name: {{ include "common.fullname" . }}-configmap
83 - name: prom-scripts
84 configMap:
85 name: {{ include "common.fullname" . }}-scripts
86 defaultMode: 0755
87 - name: core-dns-keyfile
Sylvain Desbureaux25e01d52019-12-09 11:06:39 +010088 {{- if .Values.persistence.enabled }}
89 persistentVolumeClaim:
90 claimName: {{ include "common.fullname" . }}
91 {{- else }}
92 emptyDir: {}
93 {{- end }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040094 imagePullSecrets:
95 - name: {{ include "common.namespace" . }}-docker-registry-key"