blob: 4cf61f518ef95fa71966ea2fc028ffd10977348a [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 Desbureauxcbc703c2020-11-19 17:52:07 +010043 image: {{ include "repositoryGenerator.image.readiness" . }}
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" . }}
Sylvain Desbureauxcbc703c2020-11-19 17:52:07 +010048 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040049 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
Satoshi Fujii54bfd172021-07-04 16:39:41 +000065 resources: {{ include "common.resources" . | nindent 10 }}
66 {{- if .Values.nodeSelector }}
67 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
68 {{- end }}
69 {{- if .Values.affinity }}
70 affinity: {{ toYaml .Values.affinity | nindent 8 }}
71 {{- end }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040072 volumes:
73 - name: localtime
74 hostPath:
75 path: /etc/localtime
76 - name: prom-config
77 configMap:
78 name: {{ include "common.fullname" . }}-configmap
79 - name: prom-scripts
80 configMap:
81 name: {{ include "common.fullname" . }}-scripts
82 defaultMode: 0755
83 - name: core-dns-keyfile
Sylvain Desbureaux25e01d52019-12-09 11:06:39 +010084 {{- if .Values.persistence.enabled }}
85 persistentVolumeClaim:
86 claimName: {{ include "common.fullname" . }}
87 {{- else }}
88 emptyDir: {}
89 {{- end }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040090 imagePullSecrets:
91 - name: {{ include "common.namespace" . }}-docker-registry-key"