blob: 7492b5501e219e1b73ff4b4bd013d29a975f5a66 [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
17apiVersion: extensions/v1beta1
18kind: Deployment
19metadata:
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040026 heritage: {{ .Release.Service }}
27spec:
28 replicas: 1
29 template:
30 metadata:
31 labels:
32 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010033 release: {{ include "common.release" . }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040034 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:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010058 name: {{ include "common.release" . }}-sdnc-env
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040059 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:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000073{{ include "common.resources" . | indent 12 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040074 {{- 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
Sylvain Desbureaux25e01d52019-12-09 11:06:39 +010094 {{- if .Values.persistence.enabled }}
95 persistentVolumeClaim:
96 claimName: {{ include "common.fullname" . }}
97 {{- else }}
98 emptyDir: {}
99 {{- end }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -0400100 imagePullSecrets:
101 - name: {{ include "common.namespace" . }}-docker-registry-key"