blob: 4e3b8cf505bb70f56eb731d9f57f496176bb140e [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:
21 replicas: 1
Alexander Dehn9b797d62020-04-21 09:53:50 +000022 selector: {{- include "common.selectors" . | nindent 4 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040023 template:
Alexander Dehn9b797d62020-04-21 09:53:50 +000024 metadata: {{- include "common.templateMetadata" . | nindent 6 }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040025 spec:
26 initContainers:
27 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020028 - /app/ready.py
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040029 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
Sylvain Desbureauxcbc703c2020-11-19 17:52:07 +010040 image: {{ include "repositoryGenerator.image.readiness" . }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040041 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
42 name: {{ include "common.name" . }}-readiness
43 containers:
44 - name: {{ include "common.name" . }}
Sylvain Desbureauxcbc703c2020-11-19 17:52:07 +010045 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040046 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47 envFrom:
48 - configMapRef:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010049 name: {{ include "common.release" . }}-sdnc-env
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040050 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
Satoshi Fujii54bfd172021-07-04 16:39:41 +000062 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 }}
farida azmy32c5ed82021-08-04 14:46:09 +020069 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040070 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
Sylvain Desbureaux25e01d52019-12-09 11:06:39 +010082 {{- if .Values.persistence.enabled }}
83 persistentVolumeClaim:
84 claimName: {{ include "common.fullname" . }}
85 {{- else }}
86 emptyDir: {}
87 {{- end }}
Mohammadreza Pasandidehb642ee52018-06-19 15:19:53 -040088 imagePullSecrets:
89 - name: {{ include "common.namespace" . }}-docker-registry-key"