Initial delivery of helm charts to deploy mod2 components. Resolved all
[dcaegen2/platform.git] / mod2 / assembly / helm / components / catalog-service / templates / deployment.yaml
1 {{/*
2 #============LICENSE_START========================================================
3 # ================================================================================
4 # Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18 */}}
19
20 apiVersion: apps/v1
21 kind: Deployment
22 metadata: {{- include "common.resourceMetadata" . | nindent 2 }}
23 spec:
24   replicas: 1
25   selector: {{- include "common.selectors" . | nindent 4 }}
26   template:
27     metadata: {{- include "common.templateMetadata" . | nindent 6 }}
28     spec:
29       initContainers:
30         - name: {{ include "common.name" . }}-readiness
31           image: {{ include "repositoryGenerator.image.readiness" . }}
32           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
33           command:
34             - /app/ready.py
35           args:
36           - --container-name
37           - dcaemod2-mongo
38           - "-t"
39           - "15"
40           env:
41           - name: NAMESPACE
42             valueFrom:
43               fieldRef:
44                 apiVersion: v1
45                 fieldPath: metadata.namespace
46       containers:
47         - name: {{ include "common.name" . }}
48           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
49           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50           ports: {{ include "common.containerPorts" . | nindent 10  }}
51           {{- if eq .Values.liveness.enabled true }}
52           livenessProbe:
53             tcpSocket:
54               port: {{ .Values.liveness.port }}
55             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
56             periodSeconds: {{ .Values.liveness.periodSeconds }}
57           {{ end }}
58           readinessProbe:
59             httpGet:
60               path: {{ .Values.readiness.path }}
61               port: {{ .Values.service.internalPort }}
62               scheme: {{ .Values.readiness.scheme }}
63             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
64             periodSeconds: {{ .Values.readiness.periodSeconds }}
65           resources: {{ include "common.resources" . | nindent 12 }}
66           env:
67             - name: POLICYMODEL_DEV_SERVER
68               value: {{ .Values.config.policyModelDevServer }}
69             - name: POLICYMODEL_DEV_PORT
70               value: "30522"
71             - name: POLICYMODEL_DEV_User
72               value: {{ .Values.config.policyModelDevUser }}
73             - name: POLICYMODEL_DEV_PASSWORD
74               value: {{ .Values.config.policyModelDevPassword }}
75             - name: DCAE_PLATFORM_DEV_SERVER
76               value: {{ .Values.config.dcaePlatformDevServer }}
77             - name: DCAE_PLATFORM_DEV_PORT
78               value: "30418"
79             - name: DCAE_PLATFORM_DEV_User
80               value: {{ .Values.config.dcaePlatformDevUser }}
81             - name: DCAE_PLATFORM_DEV_PASSWORD
82               value: {{ .Values.config.dcaePlatformDevPassword }}
83             - name: SPRING_DATA_MONGODB_HOST
84               value: {{ .Values.config.mongoDb }}
85
86       imagePullSecrets:
87         - name: "{{ include "common.namespace" . }}-docker-registry-key"
88